I cannot reproduce the bug. Can you submit a sample ?
Here's one that works :
Here's one that works :
<StackPanel>
<xctk:CheckListBox x:Name="_checkListBox"/>
<TextBlock Text="{Binding SelectedValue, ElementName=_checkListBox}"/>
<Button Content="ADD" Click="Button_Click"/>
</StackPanel>
public MainWindow()
{
InitializeComponent();
_checkListBox.ItemsSource = new ObservableCollection<string>()
{
"Price",
"Subban",
"Galchenyuk",
};
}
private void Button_Click( object sender, RoutedEventArgs e )
{
_checkListBox.SelectedItems.Add( "Subban" );
}