How to use the selected value of combobox in other combo box?
答案 0 :(得分:1)
你的问题不明确......但我希望以下代码可以帮助你理解......第一件事是从combo1中获取选定的值并设置combo2选择的值等于该值......你还需要确保该值应包含(或存在)在第二个组合框列表中......
XYX = Combobox1.SelectedValue;
comboBox2.SelectedValue = xyx;
如果要更改combo2的选定值,则可能需要将代码放在组合框1的“SelectedIndexChanged”事件中。
答案 1 :(得分:1)
这很简单:
ComboBox2.SelectedValue = ComboBox1.SelectedValue;
或者您可以将其存储在Integer
变量中,并将其用于您需要的任何内容。