J
Jon Yates
Hello all.
I have place a CheckBox in a DataGrid using the following
code:
DataColumn dcInclude = new DataColumn("Include?");
dcInclude.DataType = System.Type.GetType
("System.Boolean");
dtParams.Columns.Add(dcInclude);
The CheckBox column works and all is good, however, the
CheckBox has 3 states. Ticked, un-ticked and grey ticked.
Is it possible to have it so that the CheckBox only has 2
states (Ticked and un-ticked)?
Thanks people,
Jon
I have place a CheckBox in a DataGrid using the following
code:
DataColumn dcInclude = new DataColumn("Include?");
dcInclude.DataType = System.Type.GetType
("System.Boolean");
dtParams.Columns.Add(dcInclude);
The CheckBox column works and all is good, however, the
CheckBox has 3 states. Ticked, un-ticked and grey ticked.
Is it possible to have it so that the CheckBox only has 2
states (Ticked and un-ticked)?
Thanks people,
Jon