. - BrowsableAttributes:
propGraph.BrowsableAttributes = new AttributeCollection(
new Attribute[]
{
new CategoryAttribute("Appearance")
});
, , . , , , .
-, , , PropertyGrid, , /etc. :
public class MyDerivedControl : public TextBox
{
[Browsable(false)]
[Category("MyCustomCategory")]
public new bool Enabled
{
get { return base.Enabled }
set { base.Enabled = value; }
}
}
, Enabled .
-, PropertyGrid .., , , , .
, .
user2189331