我有填充像這樣的組合框:根據鍵值對設置組合框的selecteditem。
this.reqTypeInput.Items.Add(new RequestType("Label 1", "Value1"));
this.reqTypeInput.Items.Add(new RequestType("Label 2", "value2"));
this.reqTypeInput.Items.Add(new RequestType("Label 3", "value3"));
我的RequestType類是:
class RequestType
{
public string Text { get; set; }
public string Value { get; set; }
public RequestType(string text, string val)
{
Text = text;
Value = val;
}
public override string ToString()
{
return Text;
}
}
我的值。例如, 「值1」。如何將組合框的selectedItem設置爲對象{Label 1,Value1}?
我曾嘗試:
this.reqTypeInput.SelectedIndex = this.reqTypeInput.Items.IndexOf("Value1");