C# ContextMenuStrip控件前面加复选框,如图!

C# ContextMenuStrip控件前面加复选框,如图!,第1张

tsmi.Checked=true

另外,如果你要在click事件中更改状态,在你的CheckedChanged_Click事件方法有个object参数(假设名为src)

(src as ToolStripMenuItem).Checked=true或false,不过通常做法是:

(src as ToolStripMenuItem).Checked=!(src as ToolStripMenuItem).Checked

全选或取消时判断一下是否选中

for (int i = 0i <this.dataGridView1.Rows.Counti++)

{

if ((bool)dataGridView1.Rows[i].Cells["mark"].EditedFormattedValue==true)

{

this.dataGridView1.Rows[i].Cells["mark"].Value = false

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11610126.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存