CollectionViewSource をバインドできません
DocProps はパブリック プロパティです
public ObservableCollection<DocProp> DocProps1
DataContext は自己です
DataContext="{Binding RelativeSource={RelativeSource self}}"
これは機能します
<ListBox Grid.Row="0" Grid.Column="0" ItemsSource="{Binding Path=DocProps1}">
CollectionViewSource を並べ替えることができません。これは DocProps1 を取得することさえできません
<ListBox Grid.Row="0" Grid.Column="0">
<ListBox.ItemsSource>
<Binding>
<Binding.Source>
<CollectionViewSource Source="{Binding Path=DocProps1}">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="Name" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</Binding.Source>
</Binding>
</ListBox.ItemsSource>
CollectionViewSource をパブリック プロパティにバインドするにはどうすればよいですか?
ありがとう