如何检查某个组中的哪个barcheckitem被检查?
我正在创建BarSubItem中的检查项目。 我正在使用2个值来创建某个checkitem:item.naziv_programa和item.tabela。
这是创建项目的代码的一部分:
For Each item As ReturnList In mysql.vratiPrograme()
Dim barmanager1 As New BarManager
Dim BarCheckItem = New BarCheckItem()
BarCheckItem.Content = item.naziv_programa
BarCheckItem.Name = item.tabela
BarCheckItem.GroupIndex = 1
Program.Items.Add(BarCheckItem)
Next
我需要在buttonclick上运行另一个函数,我将需要传递" Name"检查的checkitem作为字符串:
Public Function vratiOpcijePrograma(ByVal tabela As String)....