c#listbox判断是否选中-获取选中的内容
string str = "";
if( !(listBox1.SelectedIndex>0))
{
MessageBox.Show("请选择需要发料的MC_ID");
return;
}
str = listBox1.SelectedItems[0].ToString();//获取选中的内容
MessageBox.Show(str);
欢迎讨论,相互学习。
cdtxw@foxmail.com