I have an object with custom properties. The only properties I wish to display in the property grid are those of category "MyCategory". How would I do that programatically?
I'm already setting the item and populating the RadPropertyGrid; it's the filtering I'm stuck on.
protected string myproperty;[Category("MyCategory")]public string MyProperty{ get; set; }I'm already setting the item and populating the RadPropertyGrid; it's the filtering I'm stuck on.
RadPropertyGrid1.Item = n;