我正在尝试根据用户在第一个表单(form1)上选择的索引在另一个表单(form2)上设置 selectedindex。
我正在使用此代码获取值,但它返回一个负数。
public int SelectedComboIndex
{
get { return comboBox1.SelectedIndex; }
}
我正在尝试设置组合框索引
comboBox1.SelectedIndex = form1.SelectedComboIndex;
谁能指出我如何做到这一点的正确方向?
编辑:更多代码,用于调用 form1 上的代码
Form1 form1 = null;
public Form2(Form1 parentForm1) : this()
{
form1 = parentForm1;
}