New to Telerik UI for WPFStart a free 30-day trial

Increase the CheckBox Size of the GridViewSelectColumn

Updated on Sep 15, 2025

Environment

Product Version2018.3.1016
ProductRadGridView for WPF

Description

How to increase the CheckBox size of the GridViewSelectColumn.

Solution

  1. Define the following style targetting the CheckBox control.

XAML
  <Style x:Key="LargeCheckBoxStyle" TargetType="CheckBox" BasedOn="{StaticResource CheckBoxStyle}">
      <Setter Property="LayoutTransform">
          <Setter.Value>
              <ScaleTransform ScaleX="2" ScaleY="2" />
          </Setter.Value>
      </Setter>
  </Style>

f you're not using the implicit styles mechanism for theming the controls with the NoXaml binaries, you need to omit the BasedOn attribute.

  1. Set the style as the CheckBoxStyle of the GridViewSelectColumn.

XAML
  <telerik:GridViewSelectColumn CheckBoxStyle="{StaticResource LargeCheckBoxStyle}" />

Alternatively you can edit the default control template of the checkbox and increase the sizes of its composing elements.

A similar approach can also be applied to the checkbox in the header of the RadGridView control by specifying a custom style as the HeaderCheckBoxStyle.

See Also