Quantcast
Channel: Extended WPF Toolkit™ Community Edition
Viewing all articles
Browse latest Browse all 4964

New Post: CheckComboBox selectedItems

$
0
0
Hi,

Maybe you are just not using the control the right way. Have you tried the sample posted on Apr 6 at 10:11 AM ? In this sample, an ObservableCollection is bound to the CheckComBox.SelectedItemsOverride property. When selecting/un-selecting items from the CheckComboBox, the SelectedItemsOverride.Count is correctly updated.
You can also add a button to this sample and observe the content of the CheckComboBox's SelectedItemsOverride and SelectedItems properties :
<Button Content="TEST"
              Click="Button_Click" />
private void Button_Click( object sender, RoutedEventArgs e )
    {
      var aa = UserGroupsCheckedComboBox.SelectedItemsOverride;
      var bb = UserGroupsCheckedComboBox.SelectedItems;
    }
it matches the selected/un-selected items that can be viewed in the CheckComboBox.

――――
Get more controls, features, updates and technical support with Xceed Toolkit Plus for WPF

Viewing all articles
Browse latest Browse all 4964

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>