The Extensible Application Markup Language (XAML) proxy of a CollectionView class.
0
votes
0answers
33 views
<CollectionViewSource.Filter> “The member ”Filter“ is not recognized or is not accessible.”
<ListView.Resources>
<CollectionViewSource x:Key="adv" Source="{Binding Adventurers}">
<CollectionViewSource.Filter>
</CollectionViewSource.Filter>
...
2
votes
1answer
36 views
Filtering CollectionViewSource
I want to make a ComboBox bound to my data, with a filter. For that I've created a TextBox and a ComboBox. In the code behind I read a file and generate objects of class Channel that are stored as ...
2
votes
0answers
31 views
CompositeCollection/CollectionViewSource confusion
I'm a little confused about how the data binding works when using these types.
I've read that you can't do the following
public partial class Window1 : Window
{
public ...
1
vote
0answers
102 views
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 one is for counting checked messages.
As you can see message filter ...
0
votes
1answer
74 views
Getting an “Items collection must be empty before using ItemsSource” with EF
We're using entity framework to retrieve our data. We're trying to bind a collection view source to a combo box to display the data. Here's the definition for the CollectionViewSource:
...
0
votes
1answer
34 views
Unknown member 'SortDescriptions' on element 'CollectionViewSource'
This is a real newbie question. I feel dumb that I have not figured it out yet. I am trying to add a sort to my CollectionViewSource in my Win 8 App.
<CollectionViewSource
...
2
votes
1answer
35 views
Observable binding to two ICollectionView of same collection
So I'm using WPF in the MVVM way using Caliburn.Micro as a framework.
I have a ViewModel with a ObservableCollection that I need to show twice with different sorting, filtering and grouping.
I'm ...
0
votes
0answers
27 views
DbContext detect when related collection entities added / removed
I have two ListViews. The first one displays all Parent entities (db.Parents.Local) and the second one should display all Parent.Children from the current item of the first ListView's ...
1
vote
1answer
60 views
Asynchronously populate DataGrid in WPF
I have a DataGridView in a WPF application. Retrieving the whole data is a long-running task that involves intensive I/O.
I thought it could be a good idea to populate the grid asynchronously, i.e. ...
0
votes
0answers
32 views
CollectionViewSource {Binding} doesn't return CurrentItem
The following doesn't work. The converter is just called once with a null value and not the item from collectionViewSource.
<ScrollViewer DataContext="{Binding Source={StaticResource ...
0
votes
2answers
72 views
Metro App CollectionViewSource ObservableCollection Filter
It appears that filtering an ObservableCollection with CollectionViewSource is not possible in WinRT:
See here!
I can filter using LINQ, but how do I get the UI to update if changes that affect the ...
0
votes
2answers
41 views
Combobox not updating when bound to CollectionViewSource which is then updated
I have the following:
<Window.Resources>
<CollectionViewSource Source="{Binding Categories}" x:Key="Categories"/>
</Window.Resources>
....
<ComboBox ...
0
votes
1answer
65 views
Can I make a custom gridviewitem independent of my collectionviewsource?
I have a CollectionViewSource that I use to populate my gridviewitems (black squares) and I was wondering if it would be possible to add a gridviewitem (red square) independent of my ...
1
vote
2answers
112 views
Silverlight 4 CollectionViewSource ListBox Filters Based on DataType
I have a ListBox which I am loading with objects of three types which all inherit from the same parent type. I would like to filter out the objects in the ListBox based on their type using a ...
1
vote
1answer
68 views
Binding Button.IsEnabled to position of current in CollectionView
I am trying to bind the IsEnabled property of a button to properties of the window's CollectionViewSource. I am doing this to implement First/Previous/Next/Last buttons and want the First and Previous ...
0
votes
1answer
80 views
CollectionViewSource Filter not working when SortDescriptions are introduced before
I define a CollectionViewSource like this, but it seems the filter is not working.
CollectionViewSource cvs = new CollectionViewSource();
//oc IS AN OBSERVABLE COLLECTION WITH SOME ITEMS OF TYPE ...
1
vote
2answers
59 views
Bind ObservableCollection as source for different CollectionViewSource
I have an ObservableCollection<MyClass> named myCollection that should be binded to two CollectionViewSources (AllItems and SelectedItems).
AllItems's source property is binded to the ...
0
votes
1answer
104 views
In wpf how to access window.resources in usercontrol
I have a child usercontrol and I am having trouble accessing its parent usercontrol's resources. The resource is a collectionViewSource and its source is set in the code behind of the parent ...
-1
votes
1answer
495 views
How does CollectionViewSource work?
Can anyone tell me how I should set the right property in CollectionViewSource in XAML on Windows 8?
<CollectionViewSource x:Name="itemsViewSource"
Source="{Binding Items}"
...
0
votes
1answer
91 views
Bind to the CollectionViewSource of a parent control
I have a composite view that is made up by a parent user control (Counterparties_MainWindow) with to embeded user controls (Counterparties_UserInputs and Counterparties_SystemDetails):
...
2
votes
1answer
53 views
WPF CollectionViewSource: Is current record last?
Using CollectionViewSource, is there a "direct" way of knowing if the current record is last one, without doing the comparatively heavy operation of enumerating through all the items to count them ...
0
votes
1answer
109 views
Create CollectionViewSource from ICollectionView CurrentItem's Property
I'm trying to create a CollectionViewSource in XAML from an ICollectionView CurrentItem's Property (related table 1..Many), but I got this error:
'System.Windows.Data.BindingListCollectionView' view ...
1
vote
1answer
99 views
How to set condition instead of PropertyName in the SortDescription while sorting a CollectionViewSource?
I want to sort a CollectionViewSource but i need to set a condition instead of PropertyName.In Fact i want to do the sort below using CollectionViewSource in Xaml.
Class2Colection.OrderBy(s => ...
0
votes
1answer
38 views
GetDefaultView returns new instance
I'm trying to add grouping to a ListCollectionView. I have a custom made observable collection that implements IList, IList and INotifyCollectionChanged. The underlying data in the observable ...
0
votes
1answer
82 views
Binding TwoWay to SelectedItem: “Wrong way” synchronization on initialization
I am trying to bind a property of my DataContext to the SelectedItem on a ComboBox like this:
<ComboBox x:Name="ElementSelector"
ItemsSource="{Binding Source={StaticResource Elements}}"
...
0
votes
2answers
663 views
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 ways:
"simple" one: Apply the filter directly to the ObjectSet throught
LINQ to Entities
setting a ...
1
vote
2answers
164 views
Upgrade from ListBox to CollectionViewSource not working
I already have a working ListBox with Items from my local database. Now I wanted to upgrade this to a CollectionViewSource for filtering. After my upgrade the new ListBox with CollectionViewSource ...
1
vote
0answers
186 views
Grouping ListView items from within XAML in Windows Store Apps
Is there a way to group collection items in the XAML code in windows store apps. In WPF you can use a CollectionViewSource and than use its property CollectionViewSource.GroupDescriptions or something ...
0
votes
0answers
85 views
Syncing ListBoxes bound to ObservableCollections sharing Navigation Properties in EF with currently selected listbox item
I've found many links dealing with this type of scenario, but am really struggling to make decisions on what needs to be done for my use case.
I'm currently working in MVVM and have three entity ...
0
votes
1answer
169 views
CollectionViewSource with Sort get sorted Items
I have a datagrid which has as source CollectionViewSource with custom sorting and I need to get sorted items collection as can be seen in datagrid. I can get sorted description and sort source ...
0
votes
0answers
77 views
Problems from collectionview to textbox using databinding
I've a problem with collectionviewsource. I put the DataContext to an ObservableCollection (declared in code behind), I create a Static Resource of type CollectionViewSource, referred to my ...
0
votes
0answers
71 views
UICollectionView with UIImageView error on Scroll
I have a UICollectionView and inside each UICollectionViewCell I have UIImageView.
The problem is when i scroll the UICollectionView, the UIImageView of the UICollectionViewCell are incorrect until ...
0
votes
2answers
235 views
ObservableCollection and CollectionView
I'm writing an application that reads data from a local db and display them in a listbox(I'm working in WPF).
I've a DVD object, where its properties are the columns of the db. This DVD object also ...
0
votes
0answers
75 views
load collectionview source without binding it
I need to load a property when the tab this propertu is in get focus.
I tried by creating a collectioview source in the xaml and having itemsource binded to the property
<CollectionViewSource ...
1
vote
1answer
176 views
Change CollectionViewSource filters with ComboBox
I was wondering how I could update a filter on a CollectionViewSource with a ComboBox.
I have the following code:
<CollectionViewSource x:Key="cvsCars"
Source="{Binding ...
2
votes
1answer
214 views
Correct Way to bind ComboBox to CollectionViewSource
Hey i have a CollectionViewSource Property on my ViewModel.
This ViewModel is bound to a ComboBox this way:
<ComboBox ItemsSource="{Binding Products.View}"
SelectedItem="{Binding ...
4
votes
2answers
258 views
How to associate custom data with a CollectionViewGroup?
I've got an ItemsControl in XAML where I am displaying an expander for each group so I can expand/collapse the group. I want to persist the state of the IsExpanded property (and potentially other ...
0
votes
2answers
372 views
ComboBox SelectedValue correctly sets SelectedValue in Viewmodel but not in View
In my Project my selectedvalue sets correctly in viewmodel but my view not sets its selectedvalue
in xaml code:
<ComboBox ItemsSource="{Binding AllValues}" SelectedValue="{Binding ...
1
vote
1answer
49 views
Is there any way for a sub-grouping to know how many items are in the parent-grouping for a CollectionViewSource in .NET
I have a Collection View source in which I've set two Group Descriptions
myCollectionViewSource.GroupDescriptions.Add(New PropertyGroupDescription("PrimaryProperty"))
...
1
vote
1answer
190 views
How do you apply multiple filter functions on one collection view source, one after another (AND relation)
I have been working with a Collection View Source object that is bound to a listview and the CVS is a view on top of Observable Collection of objects.
I know how to apply a filter using the following ...
3
votes
1answer
180 views
Why there is no .Net interface for ICollectionView<T>?
Why there is no .Net interface for ICollectionView<T>? Looking at ICollectionView it seems quite obvious to expect for ICollectionView<T>.
Am I missing something?
1
vote
0answers
89 views
Multiple DataGrids on one DataTable
I've got two CollectionViewSource bindings to the same data table Client. Each CollectionViewSource has a separate DataGrid binded to it:
(dg1: DataGrid) ----> (cvs1: CollectionViewSource) ----
...
1
vote
2answers
576 views
WPF multiple filters CollectionViewSource, first filter added works correctly, second filter added does not
I have a ListView that is bounded to a CollectionViewSource. I followed this article (refered to by many) for multiple filtering: http://www.zagstudio.com/blog/456#.UG8r6E1lWLE
I have two checkboxes ...
0
votes
3answers
4k views
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 the implementation and comment on whether this is the right approach to use ...
1
vote
1answer
423 views
Two comboboxes with the same CollectionViewSource ItemSource update each other
On my ViewModel, I have 2 properties (both implement property changed notifications) :
CountryOfIssue
Nationality
On my View, I have a CollectionViewSource pointing to a local instance of my Entity ...
0
votes
1answer
105 views
Is it possible to override CollectionViewSource.GetDefaultView to return my implementation of ICollectionView?
Is it possible to override CollectionViewSource.GetDefaultView to return my implementation of ICollection view for particular collection type?
0
votes
1answer
184 views
Finding number of groups created with CollectionViewSource grouping
I am having a list of messages and I am grouping them based on server(serverId) each message belongs to, like this -
<CollectionViewSource x:Key="MessageTypesByServer"
...
0
votes
1answer
252 views
Unit Tests under VS2012 Fail: CollectionViewSource.GetDefaultView returns null
I have recently attempted to upgrade a solution from VS2010 to VS2012, and as part of that I have introduced the new .runsettings file to generate code coverage results.
In order to specify the run ...
1
vote
1answer
700 views
How to add or remove an item from a CollectionViewSource?
I want to bind a datagrid.itemsource to a List with anonymous type,so i bind it to a collectionViewSource,but i need to add or remove an item to the list,but i don't know how?
0
votes
2answers
308 views
CollectionViewSource grouping one item to multiple groups
I am trying to mimic the msn messenger contactlist treeview display.
I have a Contact object which has a Groups property that returns an array msngroups that the Contact belongs, this meaning say I ...




