摘要:
代码如下 private void chkProcedure_MouseDoubleClick(object sender, MouseEventArgs e) { int i = chkProcedure.IndexFromPoint(e.Location); if (i != CheckedListBox.NoMatches) MessageBox.Show(chkProcedure.Items[i].ToString()); }其中CheckedListBox.NoMatc... 阅读全文