另外,如果你要在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
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)