谁能告诉我如何将 a 的选定项目获取ComboBox
到string
变量?
string selected = cmbbox.SelectedItem.ToString();
MessageBox.Show(selected);
这给了我System.Data.DataRowView
在我的MessageBox
试试这个:
string selected = this.ComboBox.GetItemText(this.ComboBox.SelectedItem);
MessageBox.Show(selected);
您可以使用如下:
string selected = cmbbox.Text;
MessageBox.Show(selected);
测试这个
var selected = this.ComboBox.GetItemText(this.ComboBox.SelectedItem);
MessageBox.Show(selected);
SelectedText = this.combobox.SelectionBoxItem.ToString();