This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hello, i am not able to group the properties in property grid. i also tried the sample code available on the forum but not succeed to do. please tell me the way to do or provide a sample code for the same. Thanks..
Regards Raghuraj
|
|
|
Hello Raghuraj, If you are using a recent nightly build of the grid, in your XAML, set: <ms:PropertyGrid Grouping="{x:Static ms:PropertyGrouping.ByCategory}" /> If you are using the RTM version of the grid, in your code-behind, write: PropertyGroupDescription byCategory = new PropertyGroupDescription("Node", new NodeToCategoryConverter()); See Help Topics > Sorting, Filtering and Grouping in the Help file for more info. |
|