Checkable-Support in WPF Button (ButtonAdv)

The ButtonAdv Control can also be used as checkboxes, if the IsCheckable property is set to true.

You can set the ButtonAdv control in checked state using the following code examples:

<sync:ButtonAdv SizeMode="Normal" IsCheckable="True" IsChecked="True"/>
ButtonAdv button = new ButtonAdv();

button.Label = "Hello World";

button.SizeMode = SizeMode.Large;

button.SmallIcon = new BitmapImage(new Uri("employee.png"));

button.IsCheckable = true;button.IsChecked = true;

Checkable Image

Checkable ButtonAdv Control