Trusted by the world’s leading companies
Overview
The WPF CheckedListBox control provides an efficient way to check items in a list, making sure you missed nothing. The control also supports select-all, grouping, sorting, virtualization, theming, keyboard, and right-to-left alignment.

Select all
You can check or uncheck individual items in the list. You can also check or clear all the items in the list with a single click.

Group
Categorize items by grouping them together. You can expand or collapse a group and check or uncheck all items in a group. You can also do nested grouping.

Sort
Navigate to an item easily by sorting it in the ascending or descending order.

UI virtualization
Load a large set of items in a check list box without affecting loading or scrolling performance. UI Virtualization is a technique that loads only items that are in view. Items will be visualized only when they are in view.

Keyboard navigation
You can navigate, expand, and collapse items using arrow keys. Space bar is used to check and uncheck items. Navigate a large set of data using Page-up, Page-Down, Home, and End keys.

Right to left (RTL)
RTL support displays the content in the right-to-left direction. This is helpful in the right to left scripted languages like Arabic, Hebrew, Urdu, etc.

Template
Items in the list can be customized with an image or custom control using templates.

Custom styling
Customize the appearance of the control to any extent programmatically.

Blendability
Users can easily load and edit the WPF CheckListBox control in Expression Blend for custom styles.

Theme
WPF CheckedListBox provides various built-in themes like Office2016, Office2013, Metro, Blend, etc., which help adopt the control based on the application UI.
WPF CheckedListBox Code Example
Easily get started with the WPF CheckedListBox using a few simple lines of XAML and C# code example as demonstrated below. Also explore our WPF CheckedListBox Example that shows you how to render and configure the CheckedListBox in WPF.
<syncfusion:CheckListBox Height="200" Width="200">
<syncfusion:CheckListBoxItem Content="Austria" />
<syncfusion:CheckListBoxItem Content="Australia"/>
<syncfusion:CheckListBoxItem Content="Canada"/>
<syncfusion:CheckListBoxItem Content="Finland"/>
<syncfusion:CheckListBoxItem Content="NewZealand"/>
</syncfusion:CheckListBox>namespace WpfApp1
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
CheckListBox checkListBox = new CheckListBox();
checkListBox.Height = 200;
checkListBox.Width = 200;
CheckListBoxItem item1 = new CheckListBoxItem() { Content = "Austria" };
CheckListBoxItem item2 = new CheckListBoxItem() { Content = "Australia" };
CheckListBoxItem item3 = new CheckListBoxItem() { Content = "Canada" };
CheckListBoxItem item4 = new CheckListBoxItem() { Content = "Finland" };
CheckListBoxItem item5 = new CheckListBoxItem() { Content = "NewZealand" };
checkListBox.Items.Add(item1);
checkListBox.Items.Add(item2);
checkListBox.Items.Add(item3);
checkListBox.Items.Add(item4);
checkListBox.Items.Add(item5);
this.Content = checkListBox;
}
}
}Not sure how to create your first WPF CheckedListBox? Our documentation can help.
I’d love to read it now145+ WPF CONTROLS
Frequently Asked Questions
Why should you choose Syncfusion WPF CheckedListBox?
- Check off items in list box easily.
Organize a large set of items by grouping them by category.
Sort items for easy access.
- Enjoy a simple configuration and API.
- Utilize a touch-friendly and responsive UI.
Take advantage of extensive demos and documentation to learn quickly and get started with the WPF CheckedListBox control.
Can I download and utilize the Syncfusion WPF CheckedListBox for free?
No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue, 5 or fewer developers, and 10 or fewer total employees.
How do I get started with Syncfusion WPF CheckedListBox?
A good place to start would be our comprehensive getting started documentation.
Our Customers Love Us
Awards
Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion® is proud to hold the following industry awards.




