56

谁能告诉我如何将 a 的选定项目获取ComboBoxstring变量?

string selected = cmbbox.SelectedItem.ToString();
MessageBox.Show(selected);

这给了我System.Data.DataRowView在我的MessageBox

4

4 回答 4

96

试试这个:

string selected = this.ComboBox.GetItemText(this.ComboBox.SelectedItem);
MessageBox.Show(selected);
于 2013-03-03T13:24:44.163 回答
13

您可以使用如下:

string selected = cmbbox.Text;
MessageBox.Show(selected);
于 2014-01-08T10:36:30.013 回答
9

测试这个

  var selected = this.ComboBox.GetItemText(this.ComboBox.SelectedItem);
  MessageBox.Show(selected);
于 2013-03-03T13:25:35.757 回答
-3
SelectedText = this.combobox.SelectionBoxItem.ToString();
于 2016-03-10T09:04:54.353 回答