if (radioButton1.Checked)
{
int a;
string s = comboBox1.SelectedItem.ToString();
if (s == "30 Days")
{
a = 30;
}
if (s == "60 days")
{
a = 60;
}
else
{
MessageBox.Show(comboBox1.SelectedItem.ToString());
}
view_n_cstmr v = new view_n_cstmr(a);
v.MdiParent = this.MdiParent;
v.Show();
}
'a'(int) 的值不受此代码影响,但在 swe 中发现该组合框项目请帮帮我