Revert "commit"

This commit is contained in:
2024-10-02 08:59:41 +00:00
parent 298156bc8d
commit a39d888c67
2987 changed files with 174 additions and 13775 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