propertygrid
-
Depends... if it is your own properties use the Category attribute: [Category("MyCategory")] public int MyInt { get{...} set{...} } if you whant to change category on derived properties, u have to override the properties and do as above, but alas not all properties can be overridden. -spif2001
-
Depends... if it is your own properties use the Category attribute: [Category("MyCategory")] public int MyInt { get{...} set{...} } if you whant to change category on derived properties, u have to override the properties and do as above, but alas not all properties can be overridden. -spif2001
I believe I saw (on Google somewhere) that adding multiple
\t
's before the category name allows you to change the order. Never tried it though:~ -
Depends... if it is your own properties use the Category attribute: [Category("MyCategory")] public int MyInt { get{...} set{...} } if you whant to change category on derived properties, u have to override the properties and do as above, but alas not all properties can be overridden. -spif2001