关于c#:从另一个表单设置combobox selectedindex时出现问题

Trouble setting combobox selectedindex from another form

我正在尝试根据用户在第一个表单 (form1) 上选择的索引在另一个表单 (form2) 上设置 selectedindex。

我正在使用此代码获取值,但它返回一个负数。

1
2
3
4
public int SelectedComboIndex
{
   get { return comboBox1.SelectedIndex; }
}

我正在尝试通过

设置组合框索引

1
comboBox1.SelectedIndex = form1.SelectedComboIndex;

谁能指出我正确的方向如何做到这一点?

编辑:更多代码用于调用 form1 上的代码

1
2
3
4
5
Form1 form1 = null;
public Form2(Form1 parentForm1) : this()
{
    form1 = parentForm1;
}


如果没有选择索引,组合框会返回负值(通常为 -1)。

所以我相信(我没有检查过)如果你为 SelectedIndex 属性设置了一个负值,你要做的就是清除组合框中的选择。

希望对您有所帮助。


最佳实践是通常在表单的 Load 方法中保留任何类型的 UI 更改,这样表单就有机会正确初始化,并且在您实际进行更改之前设置所有绑定。构造函数只能用于设置内部状态。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
private Form1 _parentForm;
public Form2(Form1 parentForm) : this()
{
    _parentForm = parentForm;
}

public Form2()
{
    InitializeComponents();
}

private void Form2_Load(object sender, EventArgs e)
{
    richTextBox1.Font = new Font("Times New Roman", 12f, FontStyle.Regular);
    dropdown();
    if(_parentForm != null)
        comboBox1.SelectedIndex = _parentForm.SelectedComboIndex;
    comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
}

试试看它是否有效。只需确保将 Load 处理程序正确添加到表单中(通过设计器或通过 this.Load += new EventHandler(Form2_Load)

在代码中


Note: You should rename all your components to something more useful than controlType1, controlType2 etc. This is good for both you and us.

正如其他人所说,如果 form1.SelectedComboIndex 返回 -1(因为 form1.comboBox1 没有选择任何内容)那么行 comboBox1.SelectedIndex = form1.SelectedComboIndex 将(正确地)将 comboBox1 的值设置为空。

此外,仅仅因为您的 ComboBox 中存在文本并不意味着它具有选定的值。确保您的组合框实际选择了一个值(而不仅仅是更改了它的文本)。您可以通过将 DropDownStyle 设置为 DropDownList 来强制选择一个值。其他两种样式都允许用户输入自定义值。

如果您希望用户能够打字,请考虑将 AutoCompleteMode 设置为 SuggestAppend 并将 AutoCompleteSource 设置为 ListItems。这样可以更轻松地从组合框中正确选择值,而不仅仅是更改文本(不小心将其保留为空)。