Code bellow is create the Check
List box
<ListBox
HorizontalAlignment="Left"
Height="242"
VerticalAlignment="Top"
Width="497"
Margin="0,44,0,0"
ScrollViewer.VerticalScrollBarVisibility="Disabled"
x:Name="StudentList">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel
IsItemsHost="True"
Orientation="Vertical"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<CheckBox
Width="150"
Foreground="Black"
IsChecked="{Binding
Active}" Content="{Binding
Path=Name}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>