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