PropertyGrid section

  • Thread starter Thread starter Bronco
  • Start date Start date
B

Bronco

How do I make sections in a PropertyGrid. IOW. what do I have to do to
prevent every public property appearing in the "misc" section?

TIA,

Bronco
 
Bronco said:
How do I make sections in a PropertyGrid. IOW. what do I have to do to
prevent every public property appearing in the "misc" section?

TIA,

Bronco

You set the CategoryAttribute and BrowsableAttribute attributes to your
property,
ex:

[Browsable(false)]
public int MyProperty { get { return myVariable; } }

[Browsable(true), Category("My Category")]
public int MySecondProperty { get { return MyProperty; } }

Hope this helps,

Javier Campos
 
Back
Top