Select Column
The GridViewSelectColumn derives from GridViewColumn and its content is represented by a CheckBox for each row. Contrary to GridViewCheckBoxColumn, GridViewSelectColumn does not bind to data. Instead, it allows you to select a given row via a checkbox. In other words, the IsChecked property of each CheckBox is bound to the IsSelected property of the corresponding row.
Example 1: Defining GridViewSelectColumn in XAML
Figure 1: The GridViewSelectColumn
If you set RadGridView's SelectionMode property to either Extended or Multiple, you will be able to:
Select more than one row by clicking on the desired checkbox.
Select all the rows by clicking on the checkbox in the header.
Example 2: Define GridViewDataColumn with Extended SelectionMode
Figure 2: The GridViewSelectColumn with Extended SelectionMode
CheckBoxStyle and HeaderCheckBoxStyle
To style the respective checkboxes, you can use the two properties of type style that GridViewSelectColumn exposes:
CheckBoxStyle
HeaderCheckBoxStyle
Example 3: Creating appropriate styles
Example 4: Setting RadGridView's CheckBoxStyle and HeaderCheckBoxStyle
Figure 3 shows the final result: