Number of clicks in the CheckBox column
PROBLEM
If you have a GridViewCheckBox column by default you need to click three times in order to change the value of the checkbox - the first click selects the current cell, the second enters edit mode and the last one will change the value.
The following solutions will give you options to control the number of clicks needed to change the value of the checkbox column.
SOLUTION
First approach
2 clicks solution
By configuring EditTriggers="CellClick" property of GridViewCheckBoxColumn the cells will enter edit mode with a single click only. Now you will need one more click to change the value of the underlying checkbox.
1 clicks solution
In addition to EditTriggers="CellClick" property, you can set the AutoSelectOnEdit="True" property of the column. This property will alter the checked state of the checkbox as soon as the cell enters edit mode, thus changing the value on a single click. Please note that the GridView has to be focused.
This could be done in XAML or in code behind when the columns are auto generated:
Second approach
Another approach would be to leverage the CellTemplate of GridViewDataColumn and put a checkbox in it:
The CheckBox is two-way bound to the IsActive boolean property so with single click you change it. The benefit here is that the CheckBox looks enabled, because it is in the CellTemplate while in the first approach the CheckBox looks disabled (because the cells are not in edit mode yet).
The column is read-only, since this is a CheckBox with two-way binding and there is no need to enter the edit mode at all.