コンボボックスに表示するいくつかの異なる辞書構造があります。コンボボックス内のキーに応じて辞書のメンバーを表示
JumpType.csで:
Select Key: _____________
| ComboBox |
-------------- __________
_____________ | OK |
Select Value: | ComboBox | ----------
--------------
:私はこのように私のUIに2つのコンボボックスを作成しました Key Values
1 Flygande
EjFlygande
2 Bak
Pik
Test
3 ...
:
public SortedDictionary<int, List<string>> jumpCombination = new SortedDictionary<int, List<string>>();
辞書の構造は以下のようになります
In Form1.cs
InitializeComponent();
JumpType jt = new JumpType();
jt.addjumpCombination(); // populating the dictionary
if (jt.jumpCombination != null)
{
comboBoxJumpComboKey.DataSource = new BindingSource(jt.jumpCombination, null); // Key => null
comboBoxJumpComboKey.DisplayMember = "Value";
comboBoxJumpComboKey.ValueMember = "Key";
comboBoxJumpComboValue.DisplayMember = "Value";
}
選択したキーに応じて、対応する値を選択する方法を教えてください。
ありがとうございます。
一覧値= jumpCombination [キー] –
jdweng