Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make checkbox bigger

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

like image 713
Sly Avatar asked Nov 20 '12 20:11

Sly


People also ask

How do I make checkboxes bigger in Word?

To change size, color, or border style of the check box, select the Use a style to format text typed into the empty control box, and then click New Style. Under Formatting, select a font size for the check box.

How do I enlarge a checkbox in Excel?

1. Right-click the checkbox, and select Format Control from the right-clicking menu as below screenshot show. 2. In the popping up Format Control dialog box, select the Move and size with cells option under the Properties tab, and then click the OK button.


1 Answers

Try some thing like this:-

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

You can also check this link

like image 171
Rahul Tripathi Avatar answered Sep 22 '22 17:09

Rahul Tripathi