1

我设置了DisplayMemberPathacomboBoxItemsSource,现在我正在尝试检索selectedText显示的但没有selectedText属性。我试过了

string s = comboBoxItem.SelectedItem.ToString();

但我得到了一个奇怪的价值。如何检索组合框的显示值

4

1 回答 1

1

对于comboBox1,在 C# winforms 中,您可以使用comboBox1.SelectedItem.ToString(). 在 WPF(显然是您想要的)中,您可以直接从Content属性中获取此信息;您可以通过以下方式访问它:

ComboBoxItem curItem = (ComboBoxItem)comboBox1.SelectedItem;
string selectedValue = curItem.Content.ToString();
于 2013-07-13T10:01:27.317 回答