我的组合框中的数组中有两个项目。
comboBox1.Items.Add(boylar[0]);
comboBox1.Items.Add(boylar[1]);
我想把它们放在一个 if 语句中,
if (comboBox1.ItemSelected.boylar[0] == true)
{
//do this..
}
else if (comboBox1.ItemSelected.boylar[1] == true)
{
//do that..
}
我该如何选择它?我已经阅读了所有其他主题,但无法做到。谢谢。