SDL Jetzt erst recht!

This commit is contained in:
2019-08-08 12:34:08 +02:00
parent f336f214e9
commit 5cbb13561f
1496 changed files with 522451 additions and 0 deletions

18
SDL/cSourceListWrapper.vb Normal file
View File

@@ -0,0 +1,18 @@
Imports System.Collections.Generic
Imports System.Text
Public Class SourceListWrapper
Private m_listSourceNames As List(Of String) = Nothing
Public Sub New(listSourceNames As List(Of String))
m_listSourceNames = listSourceNames
End Sub
Private m_SelectedIndex As Integer = 0
Public Function SelectSource() As Integer
Dim temp As New frmSourceList(m_listSourceNames)
temp.ShowDialog()
m_SelectedIndex = temp.GetSelectedIndex()
Return m_SelectedIndex
End Function
End Class