コンボボックスにいくつかの KeyValuePair があります。
this.cbEndQtr.Items.Clear();
this.cbEndQtr.Items.Add(new KeyValuePair<int, string>(1, "Test1"));
this.cbEndQtr.Items.Add(new KeyValuePair<int, string>(2, "Test2"));
キーを渡して選択する最も簡単な方法は何ですか。たとえば、次のようなものです。
this.cbEndQtr.SelectedItem = 2;