次のように、コンボボックスに基になる値と表示値を入力しています。
Dictionary<int, string> Platypi = duckBillData.GetPlatypiVals();
comboBoxPlatypus.DataSource = new BindingSource(Platypi, null);
comboBoxPlatypus.ValueMember = "Key";
comboBoxPlatypus.DisplayMember = "Value";
次に、選択したアイテムのValueMemberを抽出します。それ、どうやったら出来るの?「明らかな」ものには「ValueMember」がないようです...私は試しました:
int id = comboBoxPlatypus.ValueMember;
int id = comboBoxPlatypus.SelectedIndex. <-- no "ValueMember" here...
int id = comboBoxPlatypus.SelectedItem. <-- no "ValueMember" here...