CryptoJones icon

BetterVersionOfMe

CryptoJones | PRO | 12/22/15 04:59:03 PM UTC | 0 ⭐ | 551 👁️ | Never ⏰ | []
VB.NET |

1.29 KB

|

None

|

0 👍

/

0 👎

'####################################
'
'LabelBetter
'
'####################################
 
Public Class LabelBetter
  Inherits Label
 
  Friend WriteOnly Property OriginalText As String
    Set(value As String)
      AccessibleDescription = value
      Text = value
    End Set
  End Property
 
End Class
 
'####################################
'
'GroupBoxBetter
'
'####################################
 
Public Class GroupBoxBetter
  Inherits GroupBox
 
  Friend WriteOnly Property OriginalText As String
    Set(value As String)
      AccessibleDescription = value
      Text = value
    End Set
  End Property
 
End Class
 
'####################################
'
'ButtonBetter
'
'####################################
 
Public Class ButtonBetter
  Inherits Button
 
  Friend WriteOnly Property OriginalText As String
    Set(value As String)
      AccessibleDescription = value
      Text = value
    End Set
  End Property
 
End Class
 
 
'####################################
'
'ComboBoxBetter
'
'####################################
 
Public Class ComboBoxBetter
  Inherits ComboBox
 
  Friend WriteOnly Property OriginalText As String
    Set(value As String)
      AccessibleDescription = value
      Text = value
    End Set
  End Property
 
End Class

Comments

  •  icon
    01/01/70 12:00:00 AM UTC
    Plain Text |

    0 B

    |

    👍

    /

    👎