I've a CollectionViewSource in a first class :
Code Snippet
......
<CollectionViewSource
x:Key="cvsCat"
Source="{Binding Path=Categories}" />
....
And I want to point to this collectionviewsource from another xaml file!
Something like : ItemsSource="{Binding Source={ MyFirstClass cvsCat}}"
Is it possible
Thx for help!