C/C++/C#问题记录(二)获取ComboBox中SelectedItem的值

用到过两种方法

方法一:

((ComboBoxItem)combo.SelectedItem).Content.ToString();

方法二:

int index = combo.SelectedIndex;
string label = combo.Items.GetItemAt(index).ToString();

你可能感兴趣的:(C/C++/C#问题记录)