请问comboBox的问题~
我最近在遍个小程序,可是好像combobox不会用,下拉菜单的第一个有效,后面的都没用。。。private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (comboBox1.Text=="+(plus)")
{
label4.Text = "+";
}
else if (comboBox1.Text == "-(minus)")
{
label4.Text="-";
}
else if (comboBox1.Text == "*(multiply)")
{
label4.Text = "*";
}
else if (comboBox1.Text == "/(divide)")
{
label4.Text = "/";
}
}