WPF toolkit CheckListBox SelectedItemsOverride not working

后端 未结 3 1888
臣服心动
臣服心动 2021-01-22 13:50

I have a check list box from the wpf toolkit 2. I cannot get all of the selected items. I read that I am supposed to use SelectedItemsOverride to get all of my selected items bu

3条回答
  •  囚心锁ツ
    2021-01-22 13:54

    I faced the same problem and solved it by assigning the private field of the property

    In your example

    private ObservableCollection _testClassSelected=new ObservableCollection();
    

提交回复
热议问题