I am creating my own control like the old active X control in VB6. In VB6 you could define a property bag that would show up in the properties pane at design time when the control was dropped on the form. Can this be done in VB.Net?
Public Property _MyProperty() As Object
Get
Return MyProperty
End Get
Set(ByVal value)
MyProperty = value
End Set
End Property
Private MyProperty As Object
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.