在所有TabPage标签上设置DataGridViewCheckBoxCell

本文关键字:设置 DataGridViewCheckBoxCell 标签 TabPage | 更新日期: 2023-09-27 18:02:13

我有一个TabControl与每个TabPage一个DataGridView。DataGridView在Column[0]中有一个DataGridViewCheckBoxCell.

我想取消选中所有TabPages的DataGridView的同一行上的DataGridViewCheckBoxes。

我只能在被点击的TabPage上访问DataGridView。看起来来自myDataGrid_CellContentClick事件的sender对象不包含其他TabPages。

如何在其他TabPages上设置复选框?

void myDataGrid_CellContentClick(object sender, DataGridViewCellEventArgs e)
    {
        int clickedRow = e.RowIndex;
        int clickedColumn = e.ColumnIndex;
        if (clickedColumn != 0) return;
        DataGridView myDataGridView = (DataGridView)sender;
        if (!ToggleAllRowSelection)
        {
            foreach (TabPage myTabPage in tabControl1.TabPages)
            {
                foreach (DataGridViewRow myRow in myDataGridView.Rows)
                {
                    if (myRow.Index == clickedRow)
                    {
                       ((DataGridViewCheckBoxCell)myRow.Cells[0]).Value = false;
                    }
                }
            }
        }
    }

在所有TabPage标签上设置DataGridViewCheckBoxCell

如果每个TabPage都包含不同的DataGrid,那么您需要引用适当的网格,选择匹配的行并检查单元格

void myDataGrid_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    int clickedRow = e.RowIndex;
    int clickedColumn = e.ColumnIndex;
    if (clickedColumn != 0) return;
    DataGridView myDataGridView = (DataGridView)sender;
    if (!ToggleAllRowSelection)
    {
        foreach (TabPage myTabPage in tabControl1.TabPages)
        {
            DataGridView grd = myTabPage.Controls.OfType<DataGridView>().FirstOrDefault();
            if(grd != null)
            {
                grd.Rows[clickedRow].Cells[0].Value  = false;
            }
        }
    }
}

非常重要的是要注意,这段代码假设每个页面只有一个网格,每个网格包含的行数与单击的行数相同。