WPF toolkit CheckListBox SelectedItemsOverride not working

后端 未结 3 1892
臣服心动
臣服心动 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 14:16

    try add Mode and UpdateSourceTrigger at binding

    
    

    update: I'd checked example code from closed issue at Extended WPF Toolkit CodePlex site. Try to change TestClassSelected property to ObservableCollection. (Still keep UpdateSourceTrigger described above in .xaml)

    public ObservableCollection TestClassSelected
    

提交回复
热议问题