Built a user control based off a textbox and am adding properties of my own.
I want to be able to change Name property itself. Is is possible? I choose
another custom made property, and all the items are unique, so I would like
to then change the Name property. Is it only changeable by typing in the
grid?
Public Property DataField() As String
Get
Return _DataField
End Get
Set(ByVal value As String)
_DataField = value
Me.Name = value
End Set
End Property