Tagged Questions
3
votes
2answers
66 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 ...
2
votes
3answers
832 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
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 ...
1
vote
2answers
84 views
ObservableCollections and changes to properties in C#
I'm working with an observable collection of a Job class I have defined. I have binded a method to handle the INotifyCollectionChanged event. MSDN tells me that INotifyCollectionChanged is a "listener ...
0
votes
1answer
762 views
How to get property name from the sender object of an INotifyPropertyChanged PropertyChanged event
I have a base DependencyObject class where I have a method that takes an object, gets the properties, and for each property that is a type that implements INotifyPropertyChanged, I add a new ...
0
votes
1answer
658 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.
...