I noticed in the Property Grid that controls can be seperated into groups using a form of tree list. I have countless properties in my usercontrol and figured it would be nice to seperate them a little bit.
Printable View
I noticed in the Property Grid that controls can be seperated into groups using a form of tree list. I have countless properties in my usercontrol and figured it would be nice to seperate them a little bit.
import System.ComponentModel at the top of the class then do this:
VB Code:
<Category("NameOfCategory"), Description("A description of the property here.")> _ Public Property MyProperty() As String Get Return _MyProperty End Get Set(ByVal value As String) _MyProperty = value End Set End Property