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;
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page