如何在bunifudropdown控件中添加项目

时间:2018-03-17 10:32:27

标签: vb.net visual-studio-2015

如何在我们使用此代码的组合框中添加项目

//this is the code for combobox
If ComboBox1.SelectedItem = "A" Then
    ComboBox2.Items.Add("101") 
    ComboBox2.Items.Add("102")
Else
    If ComboBox1.SelectedItem = "B" Then
        ComboBox2.Items.Add("201")
        ComboBox2.Items.Add("202")            
    End If
End If

//this is the code i tried
If BunifuDropdown1.selectedValue = "A" Then
    BunifuDropdown2.Items.add("101")
    BunifuDropdown2.Items.add("102")
Else
    If BunifuDropdown1.selectedValue = "B" Then
        BunifuDropdown2.Items.add("201")
        BunifuDropdown2.Items.add("202")
    End If
End If

我需要一个像BunifuDropdown1这样的代码 请帮忙!

0 个答案:

没有答案