Tagged Questions
4
votes
2answers
405 views
How can I raise a CollectionChanged event on an ObservableCollection, and pass it the changed items?
I have a class that inherits from ObservableCollection and adds a few additional methods such as AddRange and RemoveRange
My base method call is this:
public void AddRange(IEnumerable<T> ...
4
votes
3answers
480 views
How does ObservableCollection<T>.Add work?
I was trying to implement a specialized collection that works like ObservableCollection to encapsulate some more mechanisms in it, to do that i also let my collection inherit from Collection and i ...
3
votes
2answers
63 views
How to refresh a data-bound collection in c#?
Im writing a simple wpf application, but Im stuck. I'd like to achieve, that I have a filter class, and If the id has been changed in the filter class by a user input, a list should refresh applying ...
3
votes
2answers
301 views
Can I rollback collection changes on collection changed event?
I have 2 list views...and add/remove buttons between them.
On collection changed event of a list-view-collection in viewmodel, can i rollback the changes for a particular condition ?
2
votes
5answers
163 views
Observable LinkedList
In my WPF app, I have an ItemsControl whose items values are dependant upon the previous item displayed.
The ViewModel is an audio file split into parts of variable length, and i need to display it ...
2
votes
3answers
821 views
INotifyPropertyChanged or INotifyCollectionChanged with DataTable?
Hi i am having some troube with DataTables. So What i need is to detect whenever i change any cell in the DataGrid of the DataTable that is binded.
How to do it? With INotifyPropertyChanged or with ...
2
votes
1answer
142 views
What is alternative of ASP.NET DataBind() in WPF?
I'm ad ASP.NET developer but recently develop WPF applications too. In ASP.NET whenever I needed to refresh data in a GridView I just call DataBind(). But what is alternative of it in WPF? As a ...
2
votes
3answers
375 views
what is notifycollectionchangedaction reset value
I have an observable collection...SelectableDataContext<T>..And in the generic class SelectableDataContext<T> is...having two private member variables
Private T item.
Private bool ...
2
votes
2answers
2k views
WPF ListBox not binding to INotifyCollectionChanged or INotifyPropertyChanged Events
I have the following test code:
private class SomeItem
{
public string Title{ get{ return "something"; } }
public bool Completed { get { return false; } set { } }
}
private ...
2
votes
1answer
2k views
ItemsSource + Converter + Treeview wont update
This one is fairly complex, hopefully I can make this clear enough for somebody to help me out. I have an object lets call it a Manager, the Manager has a collection of people that he manages, the ...
1
vote
0answers
65 views
Added item does not appear at given index '2'
I am getting this exception when I am trying to Delete the item from Dictionary which I am inheriting from INotifyCollectionChanged. When I am deleting for first time I am able to delete the item, ...
1
vote
3answers
116 views
INotifyCollectionChanged — How often does it fire (and how do they make it so efficient/fast)?
Basically, I'm wondering how it is actually efficient here.
Sample code:
void GetItems()
{
foreach (var item in items)
myObservableCollection.Add(item);
}
Won't this fire off the ...
1
vote
3answers
805 views
WPF: How do I hook into a ListView's ItemsSource CollectionChanged notification?
I have a ListView that is databound to an ObservableCollection ...
<ListView x:Name="List1" ItemsSource="{Binding MyList}" />
I can't seem to find any event that are triggered when the ...
1
vote
1answer
1k views
Implementing inotifycollectionchanged interface
I need to implement a collection with special capabilities. In addition, I want to bind this collection to a ListView, Therefore I ended up with the next code (I omitted some methods to make it ...
1
vote
1answer
628 views
Handling ObservableCollection CollectionChanged Event
I've seen code like the following in the Silverlight toolkit and can't understand how it is safe to do:
private void ItemsSourceCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
...
0
votes
1answer
243 views
Inserting data to XML file notify ObservableCollection
I have a parent window which has a ListView that is bound to an ObservableCollection that gets it's data from an XML file. On the parent window, I have an add button that opens a opens a Modal Window ...
0
votes
2answers
813 views
Examples of collection changed events on Observable Collection
I have listbox in a WPF application that displays an observable collection of photo objects. When a photo is added to the collection the UI needs show the new image right away. I understand this can ...
0
votes
1answer
656 views
How to create a custom observable collection using ConcurrentDictionary, INotifyCollectionChanged, INotifyPropertyChanged
I am trying to create an ObservableConcurrentDictionary. This object will be used in a multithreaded application, and it's data is used to populate a control via the controls ItemsSource property.
...
0
votes
1answer
133 views
WPF how to detach event hooks in UserControls
I have a WPF UserControl that contains a ComboBox. I need to attach an event listener to the ComboBox.Items collection.
public MyUserControl()
{
InitializeComponent();
...
0
votes
1answer
277 views
canceling remove action - NotifyCollectionChangedAction
I am using the following code in my viewmodel to delete items out of a collection:
UnitMeasureCollection.CollectionChanged += new ...
0
votes
1answer
568 views
Custom ObservableCollection
I have a question about a class I created that is similar to the ObserverableCollection. My class basically has the same same functionality as it, but I add some automatic sorting features to it when ...
0
votes
3answers
576 views
How do I update an IValueConverter on CollectionChanged?
Here's a basic example to explain my problem. Let's say I have
ObservableCollection<int> Numbers {get; set;}
and an IValueConverter that returns the sum of Numbers.
Normally what I'd do is ...