ComboBox
の選択されたアイテムをstring
変数に取得する方法を教えてもらえますか?
string selected = cmbbox.SelectedItem.ToString();
MessageBox.Show(selected);
これにより、MessageBox
にSystem.Data.DataRowView
が表示されます
これを試して:
string selected = this.ComboBox.GetItemText(this.ComboBox.SelectedItem);
MessageBox.Show(selected);
次のように使用できます。
string selected = cmbbox.Text;
MessageBox.Show(selected);
テスト this
var selected = this.ComboBox.GetItemText(this.ComboBox.SelectedItem);
MessageBox.Show(selected);