No announcements
Found 809205 threads
-
1 Votes
Nesting properties in property grid
Hi, tested it and it basically displays both values on the nested category's property.Answered | 33 Replies | 8676 Views | Created by _Priceless - Thursday, November 3, 2011 10:19 AM | Last reply by Mike Dos Zhang - Friday, November 11, 2011 5:38 AM -
1 Votes
Property Grid
I can make the simple properies show up in the property grid but cannot display 'Axes().ScaleType' propery.Answered | 3 Replies | 1155 Views | Created by wes.r - Wednesday, March 12, 2014 7:54 PM | Last reply by Acamar - Thursday, March 13, 2014 9:55 PM -
0 Votes
Binding to nested property
OnPropertyChanged("") is probably interpreted as "All properties of this object have changed", so the system assumes that FirstChild is a new instance and re-reads all its ...Answered | 3 Replies | 3858 Views | Created by JGMiller - Tuesday, September 22, 2009 2:24 PM | Last reply by hbarck - Tuesday, September 22, 2009 6:39 PM -
2 Votes
Properties Grid Control
Load and save data using propertygrid http://www.codeproject.com/KB/grid/SerializePropertyGrid.aspx kindly have a look at the above ...Answered | 2 Replies | 1970 Views | Created by shailesh tank - Tuesday, September 6, 2011 10:37 AM | Last reply by Narendran Ponpandiyan - Tuesday, September 6, 2011 12:09 PM -
0 Votes
Displaying customized property names in property grid
2) Will the attached property appear in the property grid?Answered | 7 Replies | 5234 Views | Created by Notre - Monday, May 3, 2010 7:04 PM | Last reply by Notre - Tuesday, May 4, 2010 12:26 AM -
0 Votes
Nested properties
I think the Properties property of myObject has to return an object that has a property called Property At the very least, you need an ...Answered | 2 Replies | 2987 Views | Created by ismail sarıkaya - Thursday, November 19, 2009 1:40 PM | Last reply by Wyck - Thursday, November 19, 2009 2:07 PM -
0 Votes
Cannot bind value to the nested property in WPF application.
These things probably ought to be usercontrols and your NestedObject declared in the xaml for MyControl rather than a property of MyControl.Answered | 6 Replies | 1809 Views | Created by VigneshKumar R - Wednesday, May 18, 2016 11:24 AM | Last reply by Magnus (MM8) - Thursday, May 19, 2016 4:24 PM -
2 Votes
Property Grid in c#
Note also that I've turned of sorting on the grid...Answered | 3 Replies | 6991 Views | Created by sabarish_s - Monday, September 15, 2008 12:18 PM | Last reply by Assam - Monday, September 15, 2008 5:56 PM -
1 Votes
Using reflection to instantiate a nested property
Check these changes: Public Sub SetProperty(ByVal target As Object, ByVal compoundProperty As String, ByVal value As Object) Dim properties As String() = ...Answered | 1 Replies | 1122 Views | Created by MbProgstar - Monday, August 20, 2018 5:44 PM | Last reply by Viorel_ - Monday, August 20, 2018 6:21 PM -
0 Votes
Nested property/collection monitoring
Provide a change event for each property of the bound type.Answered | 10 Replies | 3812 Views | Created by PatrickPijnappel - Monday, July 5, 2010 12:21 PM | Last reply by PatrickPijnappel - Tuesday, July 13, 2010 2:46 PM -
2 Votes
Databinding a nested class property
One requirement of binding to a member of a class is that it must be a public property. eg.Answered | 5 Replies | 11436 Views | Created by ArunNair - Monday, December 7, 2009 5:07 PM | Last reply by Geert van Horrik - Wednesday, December 9, 2009 6:13 PM -
0 Votes
Selected Text from Property Grid
Copy works in the property grid, there is nothing extra you need to do.Answered | 1 Replies | 4829 Views | Created by hsanshu - Wednesday, February 2, 2011 9:35 AM | Last reply by Vladimir.Ilic - Wednesday, February 2, 2011 7:18 PM -
0 Votes
Enabling/Disableing properties in the property grid
Aland Li says, thats true, also you should be add a RefreshProperties attribute with RefreshProperties.All enum parameter on your other properties, so when you change a property's ...Answered | 10 Replies | 10902 Views | Created by Greg Johnson aka JDR - Tuesday, September 14, 2010 2:33 PM | Last reply by burak299 - Friday, September 24, 2010 2:19 PM -
3 Votes
Grid doesnt have style Property?
You could bind this property to your DataContext like this: <ContentControl Content="{Binding}"> ...Answered | 3 Replies | 530 Views | Created by emil_tr - Thursday, December 3, 2015 5:55 PM | Last reply by Magnus (MM8) - Thursday, December 3, 2015 6:25 PM -
0 Votes
CSS properties grid in VS2013
Hi, When we create a web application, open an .aspx file with HTML designer in VS2013, then click View menu, you will see ‘CSS Properties’.Answered | 1 Replies | 916 Views | Created by sanbhut - Saturday, April 5, 2014 9:24 AM | Last reply by Amanda Zhu - Monday, April 7, 2014 5:48 AM -
0 Votes
Showing Relationship players in the property grid
By defaut, 0..1 roles appear in the property grid, but not 0..n roles.Answered | 2 Replies | 4353 Views | Created by Joeul - Friday, March 18, 2011 5:32 PM | Last reply by Jean-Marc Prieur - Saturday, March 26, 2011 12:33 PM -
0 Votes
Direct Assignment of value to a property of a nested class
Hi, When an object is created for any class, we can access the properties of the class through that object and direct set it values.Answered | 2 Replies | 421 Views | Created by sougata12 - Friday, October 19, 2018 3:22 AM | Last reply by Alex-KSGZ - Friday, October 19, 2018 5:44 AM -
0 Votes
Grid highlight and dynamic color properties.
Add a property to the Form like CurRec to store current recno() from the base table of the grid.Answered | 5 Replies | 5339 Views | Created by Aleniko2 - Thursday, October 24, 2013 2:42 PM | Last reply by RP Cahoon - Monday, September 3, 2018 7:40 PM -
0 Votes
Hide properties in property grid using a WpfDesigner
This method determines if a PropertyDescriptor must be created depending on the value of the IsBrowsable attribute decorating the property.Answered | 8 Replies | 6744 Views | Created by lg-artiso - Tuesday, August 9, 2011 8:05 AM | Last reply by MGlickVA - Wednesday, July 11, 2012 2:07 AM -
0 Votes
how to create Expandable Properties in property grid
Hi, I have a user control with a alot of properties, i want properties shown in property grid in whick i can expand/collapse properties, ...Answered | 2 Replies | 10324 Views | Created by Zarei Ramin - Thursday, January 6, 2011 12:43 PM | Last reply by Mike Dos Zhang - Thursday, January 13, 2011 1:27 PM - Items 1 to 20 of 809205 Next ›
No announcements