我的视图中有Datagrid
成功绑定到ObservableCollection
。我现在有一个CheckedListBox
(扩展的WPF工具包),我想绑定到同一个ObservableCollection
。我的XAML
绑定中的某些内容不太正确,因为我在运行时获取类名而不是我的UI CheckedListBox
中的值?
<Grid>
<GroupBox>
<xctk:CheckListBox DataContext="{StaticResource ArticleDataGridViewModel}" Name="checkListBox1" ItemsSource="{Binding ModelviewArticleObservableList}" DisplayMemberPath="ArticleHeader" />
</GroupBox>
</Grid>
由于