G
Guest
..Net has this great abillity of binding controls direct to user settings.
I've made an user control that has a Text property, but when I use the
browse box in the property binding of the control, Text is not mentioned.
How do I add it?
My property:
Public Overrides Property Text() As String
Get
Text = TheControl.Text
End Get
Set(ByVal Value As String)
TheControl.Text = Value
End Set
End Property
I've made an user control that has a Text property, but when I use the
browse box in the property binding of the control, Text is not mentioned.
How do I add it?
My property:
Public Overrides Property Text() As String
Get
Text = TheControl.Text
End Get
Set(ByVal Value As String)
TheControl.Text = Value
End Set
End Property