Why am I having so much doing this? I'm trying to override the default UserControl classes Text property, but I can't get it to show in design view properties. Here is my code, I'm sure someone has ran into this before.
VB Code:
Public Overrides Property Text() As String Get Text = Me.Text End Get Set(ByVal Value As String) Me.Text = Value Me.Invalidate() End Set End Property




Reply With Quote