Tagged Questions
INotifyPropertyChanged is an interface defined in Microsoft .NET used to notify listeners of data changes made to an object. These notifications enable data-bound UI controls to update their display automatically whenever the data properties they are bound to have changed.
38
votes
8answers
4k views
Implementing INotifyPropertyChanged - does a better way exist?
Microsoft should have implemented something snappy for INotifyPropertyChanged, like in the automatic properties, just specify {get;set;notify;}
I think it makes a lot of sense to do it. Or are there ...
12
votes
7answers
15k views
ObservableCollection not noticing when Item in it changes (even with INotifyPropertyChanged)
does anyone know why this code doesn't work:
public class CollectionViewModel : ViewModelBase {
public ObservableCollection<EntityViewModel> ContentList
{
get { return ...
11
votes
2answers
2k views
When nesting properties that implement INotifyPropertyChanged must the parent object propogate changes?
this question is going to show my lack of understanding of the expected behavior when implementing/using INotifyPropertyChanged:
The question is - for binding to work as expected, when you have a ...
10
votes
11answers
393 views
Is it getting to be time for C# to support compile-time macros?
Thus far, Microsoft's C# team has resisted adding formal compile-time macro capabilities to the language. There are aspects of programming with WPF that seem (to me, at least) to be creating some ...
9
votes
4answers
1k views
Simplest way to achieve automatic notification of property change
I know that there are solutions out there for implementing INotifyPropertyChanged, but none of them are as simple as: reference this library, create/add this attribute, done (I'm thinking ...
8
votes
3answers
352 views
Resharper template for automatic INotifyPropertyChanged implementation
Is it possible to write code template or a snippet which will do following:
I have a property declared like this:
public string String1 {get;set;}
And I want reshaprer to automatically generate ...
8
votes
3answers
1k views
Automatic INotifyPropertyChanged Implementation through T4 code generation?
I'm currently working on setting up a new project of mine and was wondering how I could achieve that my ViewModel classes do have INotifyPropertyChanged support while not having to handcode all the ...
8
votes
1answer
2k views
.NET WinForms INotifyPropertyChanged updates all bindings when one is changed. Better way?
In a windows forms application, a property change that triggers INotifyPropertyChanged, will result in the form reading EVERY property from my bound object, not just the property changed. (See ...
8
votes
5answers
1k views
Change Notification in MVVM Hierarchies
Let's say in some abstract ViewModel base-class I have a plain-old property as follows:
public Size Size
{
get { return _size; }
set
{
_size = value;
...
7
votes
1answer
220 views
Non-blocking lazy-loaded properties in model of MVVM
I'm fairly new to MVVM, so please excuse me if this problem has a well-known solution.
We are building a bunch of model classes which have some core properties that are loaded up-front, as well as ...
7
votes
6answers
3k views
How to raise PropertyChanged event without using string name
It would be good to have ability to raise 'PropertyChanged' event without explicit specifying the name of changed property. I would like to do something like this:
public string MyString
{
...
7
votes
3answers
2k views
PropertyChanged notification for calculated properties
I'm developing an application in Silverlight2 and trying to follow the Model-View-ViewModel pattern. I am binding the IsEnabled property on some controls to a boolean property on the ViewModel.
I'm ...
7
votes
2answers
4k views
What's the best way to call INotifyPropertyChanged's PropertyChanged event?
When you implement the INotifyPropertyChanged interface, you're responsible for calling the PropertyChanged event each and everytime a property is updated in the class.
This typically leads to the ...
6
votes
3answers
327 views
INotifyPropertyChanged: what happens behind the scene?
In WPF we have two threads (at least): rendering and a UI thread. When I raise an event OnNotifyPropertyChanged on some property changes, it is raised on the UI thread. This information needs to be ...
6
votes
4answers
2k views
IObservable<T> and INotifyPropertyChanged - is there a connection
I understand the IObservable & IObserver are implementations of the observer pattern and can be used in similiar circumstances to .Net events.
I was wondering if there is any relationship to ...
6
votes
6answers
15k views
Problem with WPF Data Binding Defined in Code Not Updating UI Elements
I need to define new UI Elements as well as data binding in code because they will be implemented after run-time. Here is a simplified version of what I am trying to do.
Data Model:
public class ...
5
votes
5answers
338 views
Just how slow is this? INotifyPropertyChanged using the StackTrace
Today, I came across an interesting method of implementing the INotifyPropertyChanged interface. Instead of passing a string name of the property changed, or a lambda expression, we can simply call ...
5
votes
2answers
642 views
How to notify all properties of the view model has changed
In MVVM pattern, how to notify all properties of the view model has changed? I don' t want to call all notifypropertychanged event of all properties.
I have an entity class and in view model I wrote ...
5
votes
2answers
305 views
INotifyPropertyChanged and calculated property
Suppose I have simple class Order, that have a TotalPrice calculated property, which can be bound to WPF UI
public class Order : INotifyPropertyChanged
{
public decimal ItemPrice
{
get { ...
5
votes
3answers
1k views
Enforcing the correct implementation of INotifyPropertyChanged with CodeContracts - “requires unproven”
I'm looking for an easy way to enforce the correct implementation of INotifyPropertyChanged i.e. when PropertyChanged is raised it must reference a property that is actually defined. I tried doing ...
5
votes
2answers
4k views
How to exclude nonserializable observers from a [Serializable] INotifyPropertyChanged implementor?
I have almost a hundred of entity classes looking like that:
[Serializable]
public class SampleEntity : INotifyPropertyChanged
{
private string name;
public string Name
{
get { ...
5
votes
3answers
2k views
What is a reasonable amount of inotify watches with Linux?
I am working on a daemon that monitors file events via inotify to trigger various types of events when files are accessed. I have read that watches are a little expensive, because the Kernel is ...
5
votes
2answers
4k views
How do you correctly update a databound datagridview from a background thread
I have a custom object that implements INotifyPropertyChanged. I have a collection of these objects where the collection is based on BindingList
I have created a binding source for the collection, ...
4
votes
3answers
90 views
When is it ok to combine 2 viewmodels into 1 instead of using some form of viewmodel-viewmodel communication?
I have 2 viewmodels that each have their own view.
the first view model has 3 properties being displayed by the view:
PolicyProvider
PolicyType
PolicyNumber
the second view model has only 1 ...
4
votes
2answers
66 views
Task parallel library INotifyPropertyChanged NOT throwing an exception?
I have a wpf project where I am using INotifyPropertyChanged on a property which binds to the textbox. I am updating this value on a different thread using task (TaskParallelLibrary). It is updated ...
4
votes
1answer
108 views
How to call a public event from a static function in the same class?
I have a class that contains an ObservableCollection of another class. I want to be notified if one of the class members is changed, because I need to do some calculating in the MediaCollection class. ...
4
votes
1answer
113 views
DependencyProperty doesn't fire ValueChanged when new value is the same
Ok so here's the problem: I wrote a UserControl which receives a new value say like every 100ms and does something with it. It has to handle each new value setter, even if the value didn't change. The ...
4
votes
4answers
190 views
How to get notified when something changes in a WPF window?
I have an ObservableCollection that's binded to a WPF ListView, and all the values appear correct. But how can I get a notification when something that has a 2-way binding changes?
Should I use ...
4
votes
1answer
1k views
C#, WPF, MVVM and INotifyPropertyChanged
I'm getting confused; I thought I understood INotifyPropertyChanged.
I have a small WPF app with a frontend MainWindow class, a viewmodel in the middle and a model at the back.
The model in my ...
4
votes
1answer
131 views
Mono.Cecil: Operation could destabilize at runtime
I followed the hints here, I even put the following lines in:
var MSILWorker = prop.SetMethod.Body.GetILProcessor();
MSILWorker.Body.InitLocals = true;
I have two properties in two classes:
...
4
votes
3answers
381 views
How to achieve INotifyPropertyChanged functionality for the values in a bool[]?
I have a bool array of size 4 and I want to bind each cell to a different control.
This bool array represents 4 statuses (false = failure, true = success).
This bool array is a propery with a class:
...
4
votes
3answers
470 views
Inheriting from one base class that implements INotifyPropertyChanged
I've been using the following bit of code in a cookie cutter fashion, across dozens of classes
public event PropertyChangedEventHandler PropertyChanged;
protected void ...
4
votes
2answers
653 views
WPF: show property change without imlementing INotifyPropertyChanged
In my WPF application, I have a boolean property which I would like to show to the user (for example with a read-only checkbox). Normally I would implement INotifyPropertyChanged so WPF can act on ...
4
votes
1answer
1k views
Creating an INotifyPropertyChanged proxy to dispatch calls to UI thread
I would like to create a dynamic proxy for binding WinForms controls to objects changed by a different (non-GUI) thread. Such a proxy would intercept the PropertyChanged event and dispatch it using ...
4
votes
1answer
1k views
C#/WPF: PropertyChanged for all Properties in ViewModel?
I've a class like this:
public class PersonViewModel : ViewModelBase //Here is the INotifyPropertyChanged Stuff
{
public PersonViewModel(Person person)
{
PersonEntity = person;
}
...
4
votes
7answers
1k views
Is there a good strongly typed way to do PropertyChanged events in C#?
It must be a somewhat common event to change the name of a property and expect the Rename functionality in Visual Studio to take care of all the necessary renaming, except for the property name of the ...
4
votes
8answers
2k views
INotifyPropertyChanged problem
At first I want to say that sample below is oversimplification.
Suppose you have bound WPF control.
<Window Title="Window1" Height="300" Width="300">
<Grid>
<StackPanel>
...
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 ...
3
votes
6answers
71 views
What is the performance expense of string comparisons for INotifyPropertyChanged?
I was wondering about why MS decided to use strings in the design of INotifyPropertyChanged?
My initial worry was the large expense of doing string comparisons on every change notification, and I was ...
3
votes
4answers
104 views
List<string> INotifyPropertyChanged event
I have a simple class with a string property and a List property and I have the INofityPropertyChanged event implemented, but when I do an .Add to the string List this event is not hit so my Converter ...
3
votes
2answers
147 views
Entity Framework 4: PropertyChanged event is raised too often
the generated code from EF for a property of an entity looks like this:
/// <summary>
/// No Metadata Documentation available.
/// </summary>
...
3
votes
3answers
186 views
INotifyPropertyChanged does not work when the property set to a same value for the second time
This is the code to reproduce this issue:
xaml:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
3
votes
4answers
250 views
How can I notify that a property of an item in an observable collection has changed?
Okay, I have an ItemsControl in a XAML file that binds to an ObservableCollection. The ObservableCollection is found on a view-model class (let's call this class ViewModelA), and each item in the ...
3
votes
2answers
228 views
WPF memory allocation leaps using binding, inotifypropertychanged and dependency property
I'm writing a program that uses a bunch of two-way bindings and the amount of memory used has become a huge problem. In my full application, I start at 50Mb, and then, just by using the bindings (i.e. ...
3
votes
4answers
184 views
Does unnecessary NotifyPropertyChanged calls cause performance issues?
In my new WPF Application, I am reusing a Model class. In that model class, all the properties, in their setters, fire NotifyPropertyChanged. In my application, I do not really have a use case of ...
3
votes
1answer
691 views
WPF: binding to custom class property. PropertyChanged is fired but view does not update
I have a custom class Spieltag containing a property SpieltagDaten (custom class). SPieltagDaten has a property called SpieleGespielt. I have set this property as target of a binding on textbox ...
3
votes
1answer
353 views
DataBinding within a UserControl not working at design time?
I have a small question regarding databinding and user controls.
I construct (using C# 2010) a user control which is basically a wrapper for a ComboBox, and it has a custom property, which when ...
3
votes
3answers
205 views
Pattern for implementing INotifyPropertyChanged?
I have seen the following pattern used for implementing INotifyPropertyChanged
private void NotifyPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
...
3
votes
5answers
263 views
What kind of compiler magic do we need more?
I develop lot view models which are:
1) All have to implement INotifyPropertyChanged to be bindable to UI.
2) Property setters have to raise PropertyChanged on change.
3) PropertyChanged event has ...
3
votes
3answers
2k views
Subscribe to INotifyPropertyChanged for nested (child) objects
UPDATE: Problem solved, see my Answer.
I'm looking for a clean and elegant solution to handle the INotifyPropertyChanged event of nested (child) objects. Example code:
public class Person : ...