Tagged Questions
The collectionviewsource tag has no wiki summary.
12
votes
3answers
529 views
How to preserve TwoWay binding of CurrentItem when databinding to CollectionViewSource in ComboBox
Lets say we got a simple VM class
public class PersonViewModel : Observable
{
private Person m_Person= new Person("Mike", "Smith");
private readonly ...
6
votes
1answer
855 views
CollectionViewSource sorting only the first time it is bound to a source
I'm using a DataGrid bound to a CollectionViewSource (players), itself bound to the currently selected item of a ListBox (levels), each item containing a collection to be sorted/displayed in the ...
6
votes
2answers
511 views
DesignTime data not showing in Blend when bound against CollectionViewSource
I have a datatemplate for a viewmodel where an itemscontrol is bound against a CollectionViewSource (to enable sorting in xaml).
<DataTemplate x:Key="equipmentDataTemplate">
<Viewbox>
...
5
votes
2answers
2k views
How to automatically update filter and/or sort order on CollectionViewSource, when an individual item's property changes?
Ok, so this question is related to Windows Phone 7/Silverlight (updated WP7 Tools, Sept 2010), specifically filtering an underlying ObservableCollection<T>.
In mucking about with the WP7 ...
4
votes
1answer
424 views
Memory Leak with CollectionViewSource.GetDefaultView() in WPF?
I'm wondering what the best practices are for working with CollectionViews in WPF in particular the use of the CollectionViewSource.GetDefaultView() method. Has anyone run into any problems with using ...
4
votes
2answers
908 views
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 the multiple is a combobox with items.
I'm trying to group the items in the ...
4
votes
1answer
1k views
CollectionViewSource Use Question
I am trying to do a basic use of CollectionViewSource and I must be missing something because it is just not working. Here is my XAML:
<Window.Resources>
<CollectionViewSource ...
3
votes
3answers
454 views
Binding a CollectionViewSource within a DataTemplate
'ContentTemplate' is a DataTemplate that displays an object which has a member 'FooList' (an ObservableCollection).
<DataTemplate x:Key="ContentTemplate">
<ListBox ItemsSource="{Binding ...
3
votes
2answers
2k views
CollectionViewSource CurrentItem
I am using a CollectionViewSource in a dialog view model that has various filtering requirements, which works fine. I also maintain the equivalent of the selected item in a property (SelectedProject), ...
3
votes
3answers
256 views
WPF How to set a maximum amount of results from CollectionViewSource
I am trying to display a set of data using a DataTemplate in an ItemsControl, with the ItemsPanel set as a uniform grid of size 3 x 3. The ItemsSource of the ItemsControl is set to bind to a ...
2
votes
1answer
37 views
BackgroundWorker and CollectionViewSource
How can i load my data in backgroundworker when using a CollectionViewSource? it throws an error because my CollectionViewSource is in UI thread.
This is all of my code (My background worker set in ...
2
votes
3answers
854 views
Trigger Filter on CollectionViewSource
I am working on a WPF desktop application using the MVVM pattern.
I am trying to filter some items out of a ListView based on the text typed in a TextBox. I want the ListView items to be filtered as ...
2
votes
1answer
183 views
When is CollectionViewSource Source property set if viewSource is a static resource
I got following CollectionViewSource definition in XAML:
<UserControl.Resources>
<CollectionViewSource x:Key="PersonsViewSource" Source="{Binding AvailablePersons}">
...
2
votes
2answers
652 views
Binding with CollectionViewSource
I am trying to implement some combo box sorting using CollectionViewSource. This combo box is actually part of a data template and is repeated in a list view. My first approach seemed to work (using ...
2
votes
1answer
392 views
How can I maintain the current selection in a sorted silverlight treeview?
I have a silverlight 4 TreeView control with a hierarchy of data. I want the items in each level to be sorted alphabetically, so I am using a CollectionViewSource, but don't actually care how the ...
2
votes
2answers
209 views
C#/WPF: Why is tab not focusing properly
I have a tab control
<TabControl Height="Auto" Grid.Row="1" ItemsSource="{Binding Tabs}" IsSynchronizedWithCurrentItem="True">
That is bound to Tabs in the ViewModel. I also used ...
2
votes
1answer
328 views
Can you use a CollectionViewSource inside a DataTemplate?
Is it possible to explicitly use a CollectionViewSource inside a data template? Normally we'd put the CollectionViewSource in the resources alongside the template, but our model doesn't allow that ...
2
votes
3answers
2k views
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.ListBoxItemsFilter.ListBoxFilterUsingCollectionViewSource"
...
2
votes
2answers
684 views
Get notified of DataContext changed in a WPF Resource
I'm having an annoying problem with WPF binding. Basically, I declare a FrameworkElement in my UserControl's resources, but that item doesn't seem to get notified when the DataContext of the parent ...
2
votes
1answer
450 views
Can you turn off selection syncing in WPF's CollectionViewSource?
I have several CollectionViewSource instances all used on the same ObservableCollection. I also have several controls that need to show filtered versions of the collection (hence the ...
2
votes
1answer
168 views
Finding all the ICollectionView's attached to a collection
We have multiple filters based on the same collection. i.e. we are displaying the same collection in a variety of ways. What i would like to be able to do is ask all of the CollectionViews to refresh ...
2
votes
2answers
2k views
WPF CollectionViewSource Multiple Views?
I've written a Custom WPF Control with search extension, let's name it MyControl.
The Control is a descendent of an ItemsControl class.
So I feed the the data source to it like this:
The control ...
2
votes
2answers
2k views
Bind a Wpf HierarchicalDataTemplate ItemsSource to a CollectionViewSource in a dictionary?
I'm trying to display a Wpf Treeview with items sorted by a CollectionViewSource.
Currently, everything is working except sorting using this code in my resource dictionary:
...
2
votes
2answers
1k views
How to handle a CompositeCollection with CollectionView features?
Is there a way to get notified when CompositeCollection's current location changes?
I need to have the CompositeCollection monitored by a CollectionView, any ideas are welcommed.
2
votes
3answers
6k views
WPF Grouping using CollectionViewSource and DataBinding
I'm binding a CollectionViewSource to a ListView to group items. It all works great except when I update the ObservableCollection the CollectionViewSource is based on. If I update a value of an object ...
1
vote
0answers
59 views
Remove a sort from CollectionViewSource C# Part 2
In part 1 of this question I had a problem with the combo boxes emptying if I used:
lstCars.Items.SortDescriptions[item]
or
lstCars.Items.SortDescriptions.RemoveAt(item)
I have a Car class, and ...
1
vote
1answer
170 views
How to create a WPF ListCollectionView to sort DataGrid CollectionViewSources
this is my first WPF project so please bare with me.
Here are my CollectionViewSources:
<CollectionViewSource x:Key="topLevelAssysViewSource" d:DesignSource="{d:DesignInstance my:TopLevelAssy, ...
1
vote
1answer
46 views
Get CollectionViewSource Group row?
I display some date in a WPF ListBox
ICollectionView _myView;
_myView = CollectionViewSource.GetDefaultView(items);
_myView.GroupDescriptions.Add(new PropertyGroupDescription("ParentID"));
On each ...
1
vote
1answer
35 views
Can you filter a single item from a CollectionViewSource
I want to filter out a single item in my CollectionViewSource
I already have other filters applied, but I'm trying to find a way of filtering out an individual item without having to call a function ...
1
vote
1answer
70 views
An unhandled exception when using FirstOrDefault() with CollectionViewSource?
I bound entities to a CollectionViewSource. Then I query in code behind. Because the id field is the PK so I think I should use FirstOrDefault() to make my app execute faster. But it always throws an ...
1
vote
1answer
141 views
Binding Path for nested objects
Im just getting to grips with databinding, Im struggling with binding to properties that are nested within an ObservableCollection further down the object, namely In a DataTemplate of a ListView I am ...
1
vote
2answers
240 views
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 can't have code behind. It just nags at me.
1
vote
1answer
113 views
TreeView and HierarchicalDataTemplate in code
I am trying to set up a TreeView with code only from an unnested list of objects with various properties. I set up SortDescriptions and GroupDescriptions, but I cannot figure out how to configure the ...
1
vote
2answers
356 views
Master Details: How do I add a detail record?
This should be simple: If I have an entity framework master detail relationship how do I add a detail record in code? Let's say I have parent table/entity called Book and a child/lookup table/entity ...
1
vote
1answer
238 views
how to insert record with wpf databinding?
im new to wpf, so please bear with me
i made a window for the purpose of managing "profile" records
while the navigation and updating is working
i cannot seem to get insertion working, as well
...
1
vote
0answers
321 views
Sorting a CollectionView's Groups on a property generated by IValueConverter
I am using CollectionViewSource's groupings to display a virtual "aggregate" view of a collection of details; basically the sample seen here: ListBox Grouping, Sorting, Subtotals and Collapsible ...
1
vote
2answers
759 views
WPF TreeView Dynamic Grouping
I'm attempting to create a TreeView in WPF that is bound to a CollectionViewSource. I create groups in the CollectionViewSource and have the HierarchicalDataTemplate setup in the XAML to display the ...
1
vote
1answer
813 views
How can I bind DataGrid row count after a CollectionView filter is applied?
Previously to implementing filtering on the CollectionView, i used this to display the number of rows within the datagrid;
<TextBlock Text="{Binding ElementName=dataGrid1, Path=ItemsSource.Count}" ...
1
vote
1answer
1k views
WPF Data binding: CollectionViewSource and ObjectDataProvider issue
I have a MainWindow.xaml file:
<Window.Resources>
<CollectionViewSource x:Key="cvs"
Source="{Binding Source={StaticResource ResourceKey=DetailsCollection}}" />
...
1
vote
2answers
963 views
Collection Binding on CollectionViewSource Source Property
I've a CollectionViewSource as ItemsSource of my DataGrid...on Window.Resources I've this definition:
<CollectionViewSource x:Key="ItemsPoolCollectionView"
Source="{Binding ...
1
vote
1answer
572 views
DataGrid is not obedient to SelectedIndex property set
I need to make the DataGrid, so if I am in edit mode, and the current row is not valid, the user should not be able to select a different row.
In fact, I think that the DataGrid is supposed to avoid ...
1
vote
1answer
238 views
Entity Framework 4 - Sorting by foreign entity
I get "'System.Windows.Data.BindingListCollectionView' view does not support sorting." when I use the following CollectionViewSource:
<CollectionViewSource Source="{Binding ...
1
vote
1answer
229 views
Is Silverlight's CollectionViewSource thread-safe?
I am trying to figure this out, given the following code, does the Refresh() need to occur on the UI thread? It seems to work, and I am wondering if the CollectionViewSource is actually a ...
1
vote
1answer
515 views
WPF ListView groups repeat column headers
Is there a way to repeat the column headers inside each group of a ListView.GridView when using a grouped CollectionViewSource as the source of the ListView?
I am using the example at ...
1
vote
1answer
494 views
WPF: Bind/Apply Filter on Boolean Property
I want to apply a filter to a ListBox accordingly to the IsSelected property of a CheckBox.
At the moment I have something like this.
XAML
<CheckBox Name="_filterCheckBox" Content="Filter list" ...
1
vote
1answer
538 views
ICollectionView.SortDescriptions does not work for boolean
myListBox.Items.SortDescriptions.Add(
new SortDescription("BoolProperty", ListSortDirection.Descending));
This sorting works only for string properties of the underlying project. Not with ...
1
vote
0answers
773 views
MVVM CollectionViews in WPF Application Framework (WAF)
In short my question is: How do you prefer to expose filtered/sorted/grouped ObservableCollections to Views in WAF?
I was fairly happy with my first attempt which involved filtering on the VM and ...
1
vote
2answers
2k views
Binding to CurrentItem in a ItemsControl
The XAML below is basically trying to make a list of Buttons (rendered from the Name property of objects in the Views collection in the current DataContext.
When I click on a button the CurrentItem ...
1
vote
1answer
598 views
Trouble using CollectionViewSource in Silverlight
I having some trouble when implementing the CollectionViewSource in silverlight. I'm new in this topic, so basically I've been following what I find searching through the web. Here's what I've been ...
1
vote
1answer
678 views
Why does the WPF Databinding not update after the collection is Filtered?
Why does my WPF ContextMenu databinding not update as expected when the collection is updated, however the ItemTemplate is displaying the context menu text correctly?
Within the code below this works ...