c#listbox判断是否选中-获取选中的内容

string str = "";
if( !(listBox1.SelectedIndex>0))
{
MessageBox.Show("请选择需要发料的MC_ID");
return;
}
str = listBox1.SelectedItems[0].ToString();//获取选中的内容
MessageBox.Show(str);

posted @ 2021-06-25 13:08  txwtech  阅读(1913)  评论(1编辑  收藏  举报