方法一:

   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();

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部