Projektdateien hinzufügen.

This commit is contained in:
573 changed files with 166751 additions and 0 deletions

31
Gemeinsames/MyListItem.vb Normal file
View File

@@ -0,0 +1,31 @@

Public Class MyListItem
Private mText As String
Private mValue As String
Public Sub New(ByVal pText As String, ByVal pValue As String)
mText = pText
mValue = pValue
End Sub
Public ReadOnly Property Text() As String
Get
Return mText
End Get
End Property
Public ReadOnly Property Value() As String
Get
Return mValue
End Get
End Property
Public Overrides Function ToString() As String
Return mText
End Function
End Class