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:
  1. Public Overrides Property Text() As String
  2.         Get
  3.             Text = Me.Text
  4.         End Get
  5.         Set(ByVal Value As String)
  6.             Me.Text = Value
  7.             Me.Invalidate()
  8.         End Set
  9.     End Property