Solved: Custom Control Ide Properties list
Hello,
Im trying to make a custom control.
This control Should have a property that acts as (for example) the label modifiers property in the VB.net ide.
[Broken External Image]:http://alpine.xs4all.nl/~hib/vb-ide-label-modifiers.JPG
currently i can only make something similair to this but not with mutiple propertie-values in one property.
annyone an idea how to do this..?
regards hilmar
Hello,
Im trying to make a custom control.
This control Should have a property that acts as (for example) the label modifiers property in the VB.net ide.
[Broken External Image]:http://alpine.xs4all.nl/~hib/vb-ide-label-modifiers.JPG
currently i can only make something similair to this but not with mutiple propertie-values in one property.
Code:
Private req As Boolean = False
Public Property requierd() As Boolean
Get
Return req
End Get
Set(ByVal Value As Boolean)
req = Value
End Set
End Property
annyone an idea how to do this..?
regards hilmar
Last edited by a moderator: