I need a silverlight checkbox with the box that holds the checkmark much smaller(10px x 10 px) than the default size.
is this possible?
I need a silverlight checkbox with the box that holds the checkmark much smaller(10px
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use a
ScaleTransform.You can see from the code on the MSDN page that you can use it on any UI element. So in your case you’d want something like this:
You’ll have to play with the scale values to get the numbers right, though if you know the current size you could do some maths to get the scale needed to reduce it to 10×10 pixels.