Top "Collectionviewsource" questions

The Extensible Application Markup Language (XAML) proxy of a CollectionView class.

Proper way to use CollectionViewSource in ViewModel

I used Drag and Drop to bind Data Source object (a DB model) to DataGrid (basically following this example in …

c# wpf mvvm datagrid collectionviewsource
Trigger Filter on CollectionViewSource

I am working on a WPF desktop application using the MVVM pattern. I am trying to filter some items out …

wpf xaml mvvm filter collectionviewsource
CollectionViewSource MVVM Implementation for WPF DataGrid

I have implemented small demo of CollectionViewSource for WPF DataGrid in MVVM. I would really appreciate any help to verify …

c# wpf mvvm datagrid collectionviewsource
CollectionViewSource, how to filter data?

I am binding a ComboBox to Entities but I want the data filtered. Up to now I have tried two …

c# binding filtering collectionviewsource
Re-sort WPF DataGrid after bounded Data has changed

I am looking for a way to re-sort my DataGrid when the underlying data has changed. (The setting is quite …

c# wpf data-binding datagrid collectionviewsource
How to get Items count from CollectionViewSource?

I am using CollectionViewSource to filter the records displayed in a ListBox. The xaml follows. <Window x:Class="WPFStarter.…

c# wpf collectionviewsource
WPF DataGrid CustomSort for each Column

I have a WPF DataGrid bound to a CollectionViewSource that encapsulates an ObservableCollection. This CollectionViewSource has two main objectives: 1) To …

c# .net wpf datagrid collectionviewsource
Grouping items in a ComboBox

I have a ListView that contains two types of objects, single and multiple. The single is a ordinary TextBlock while …

wpf mvvm combobox collectionviewsource
In WPF can you filter a CollectionViewSource without code behind?

Really the subject says it all. <CollectionViewSource x:Key="MyData" Source="{Binding}" Filter="{ SomethingMagicInXaml? }" /> It's not that I …

c# wpf xaml filter collectionviewsource
WPF Multiple CollectionView with different filters on same collection

I'm using a an ObservableCollection with two ICollectionView for different filters. One is for filtering messages by some type, and …

c# wpf observablecollection collectionviewsource icollectionview