C# 右键菜单-进行单选选项(ContextMenuStrip控
件)
当大家在写WinFrom的时候,有时候要求右键选择状态只能选中一项,其它为不项中。如图:
直接上代码:
处理方法--
1///
2///设置右键菜单单选
3///
4///参数-右键可选项类
5public void IsCheckedControl(ToolStripMenuItem cms)
6 {
7//这里写父容器的集合 --可自动判断。这里我采用手写。提高效率
8foreach(ToolStripMenuItem item in this.tsmOpacityTime.DropDownItems)
9 {
10//不是当前项的取消选择
11if (http://www.doczj.com/doc/ac4a174f69eae009581bec4a.html == http://www.doczj.com/doc/ac4a174f69eae009581bec4a.html)
12 {
13 item.Checked = true; //设选中状态为true
14 }
15else
16 {
17 item.Checked = false; //设选中状态为false