Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom checkbox in silverlight

How to create custom checkbox that looks like the one shown below. The checkboxes are dynamically drawn and can have custom colors.

like image 760
Nemo Avatar asked Oct 12 '11 02:10

Nemo


1 Answers

Well, you can just style it. Take the style from here and change it. The key component in the style is VisualStateManager, make sure you understand what it does.

Also you can create a custom control, you can read about it, for example, here.

like image 90
Dmitry Avatar answered Oct 10 '22 07:10

Dmitry