Hello, is there possible to make checkbox bigger in checkbox type column? I need to make it twice bigger.
<syncfusion:GridCheckBoxColumn MappingName="IsShipped" HeaderText="Is Shipped" >
<syncfusion:GridCheckBoxColumn.CellStyle>
<Style TargetType="syncfusion:GridCell" >
<Style.Resources>
<Style TargetType="CheckBox">
<Setter Property="RenderTransform">
<Setter.Value>
<ScaleTransform ScaleX="2" ScaleY="2"/>
</Setter.Value>
</Setter>
</Style>
</Style.Resources>
</Style>
</syncfusion:GridCheckBoxColumn.CellStyle>
</syncfusion:GridCheckBoxColumn> |
Thank you for the answer but i'm getting an exception:
System.InvalidOperationException: 'TargetType "GridCell" does not match type of element "GridCell"
EDIT:
I'm creating a WPF application with NET5 framework and that problem occurs in this version of framework. It works properly with NetFrameword 4.6 as you provided with sample.
I need a solution for NET5.
Second problem is positioning checkbox within a cell. The checkbox is not centered in the cell.