How to make checkbox bigger

Sly picture Sly · Nov 20, 2012 · Viewed 43.3k times · Source

I'm using a checkbox control like this:

<CheckBox VerticalAlignment="Bottom" IsChecked="{Binding Selected}" 
      Grid.Column="0" 
      FontSize="{StaticResource PhoneFontSizeLarge}" 
      Content="{Binding Name}">
</CheckBox>

The thing is that I change size to be a little bigger. In this case text is getting bigger, but tick itself remains the same. It looks ugly, can I resize checkbox somehow?

UPDATE I'm doing it on windows phone so LayoutTransform not appropriate here

Answer

Rahul Tripathi picture Rahul Tripathi · Nov 20, 2012

Try some thing like this:-

<CheckBox>
    <CheckBox.LayoutTransform>
        <ScaleTransform ScaleX="2" ScaleY="2" />
    </CheckBox.LayoutTransform>
</CheckBox>

You can also check this link