我有2个组合框我希望实现这样的目标, 当我选择 combobox1 最后值时,将自动选择 combobox2 最后值,如何使用C#代码, 请帮帮我,
答案 0 :(得分:0)
在SelectionChanged
ComboBox1
事件中,将SelectedIndex
的{{1}}设置为(ComboBox2
中的项目数) - 1) 即可。这段代码应该有效:
ComboBox2
答案 1 :(得分:0)
无论如何,Bellow Code对我来说都很好,多亏了你的重播...... :)
private void combobox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (combobox1.SelectedIndex == (combobox1.Items.Count - 1))
{
combobox2.SelectedIndex = combobox2.Items.Count - 1;
}
}