When we add a customized checkbox column to a datagrid in .net (windows application) , the default property allows to check or uncheck the column using a double click. On the first click it selects the column and on the second click the column is either checked or unchecked.
To change this default property, we need to handle the click event on grid and modify the selected cell value. Here is the sample code to achieve this.
[C#.NET VS 2003 , Code to add checkbox column to grid using table style property]
dgItemDetails.TableStyles.Clear(); // clears the tablestyle (dgItemDetails is the name of grid)
DataGridTableStyle dgt = new DataGridTableStyle();
dgt.MappingName = "ItemDetails";
DataGridBoolColumn dgbCol = new DataGridBoolColumn(); // creates the checkbox column
dgbCol.MappingName = "Select";
dgbCol.HeaderText = "";
dgbCol.Width = 40;
dgbCol.AllowNull = false;
dgbCol.Alignment = HorizontalAlignment.Left;
dgt.GridColumnStyles.Add(dgbCol);
dgItemDetails.TableStyles.Add(dgt); // add new tablestyle to grid
Hope this tip would be helpful
http://www.mindfiresolutions.com/Checkbox-Column-In-Datagrid-857.php
Comments
To change this default property, we need to handle the click event on grid and modify the selected cell value.
For more details about that tip.please check the link below:
http://www.mindfiresolutions.com/Checkbox-Column-In-Datagrid-857.php