方法一:
string test = null;
foreach (ComboBoxItem item in e.AddedItems)
{
test = item.Content.ToString();
break;
}
方法二:
ComboBoxItem cbi = (ComboBoxItem)(sender as ComboBox).SelectedItem;
string selectedText = cbi.Content.ToString();
方法三:
ComboBoxItem cbi = (ComboBoxItem)combobox_Test.SelectedItem; //combobox_Test为combobox的name
string selectedText = cbi.Content.ToString();
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » wpf中几种获取ComBox中值的方法
发表评论 取消回复