C# DataGridViewCheckBoxColumn Hide/Gray-Out

后端 未结 3 782
既然无缘
既然无缘 2021-01-13 17:21

I have a DataGridView with several columns and several rows of data. One of the columns is a DataGridViewCheckBoxColumn and (based on the other dat

3条回答
  •  别那么骄傲
    2021-01-13 17:43

    Some workaround: make it read-only and change back color to gray. For one specific cell:

    dataGridView1.Rows[2].Cells[1].Style.BackColor =  Color.LightGray;
    dataGridView1.Rows[2].Cells[1].ReadOnly = true;
    

    Or, better but more "complicated" solution:
    suppose you have 2 columns: first with number, second with checkbox, that should not be visible when number > 2. You can handle CellPainting event, paint only borders (and eg. background) and break painting of rest. Add event CellPainting for DataGridView (optionally test for DBNull value to avoid exception when adding new data in empty row):

    private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
    {
        //check only for cells of second column, except header
        if ((e.ColumnIndex == 1) && (e.RowIndex > -1))
        {
            //make sure not a null value
            if (dataGridView1.Rows[e.RowIndex].Cells[0].Value != DBNull.Value)
            {
                //put condition when not to paint checkbox
                if (Convert.ToInt32(dataGridView1.Rows[e.RowIndex].Cells[0].Value) > 2)
                {
                    e.Paint(e.ClipBounds, DataGridViewPaintParts.Border | DataGridViewPaintParts.Background);  //put what to draw
                    e.Handled = true;   //skip rest of painting event
                }
            }
        }
    }
    

    It should work, however if you change value manually in first column, where you check condition, you must refresh the second cell, so add another event like CellValueChanged:

    private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
    {
        if (e.ColumnIndex == 0)
        {
            dataGridView1.InvalidateCell(1, e.RowIndex);
        }
    }
    

提交回复
热议问题