Do folks have any guidance on when a simple .NET property that fires INotifyPropertyChanged.PropertyChanged is sufficient in a view model? Then when do you want to move up to a full blown dependency property? Or are the DPs intended primarily for views?
|
There are a few approaches: 1. The dependency property While you using the dependency property it makes the most sense in elements-classes that have a visual appearance (UIelements). Pros:
Cons:
Sample:
2. The System.ComponentModel.INotifyPropertyChanged Usually, when creating a data object, you’ll use this approach. It is simple and neat solution for Data-like stuff. Pros and Cons - complementary to 1. You need to to implement only one event (PropertyChanged). Sample:
3.PropertyNameChanged Rising an event for each property with specified name(f.e. NameChanged). Event must have this name and it is up to you to handle/rise them. Similar approach as 2. 4. Get the binding Using the FrameworkElement.GetBindingExpression() you can get the BindingExpression object and call BindingExpression.UpdateTarget() to refresh. First and second are the most likely depending what is your goal. All in all, it is Visual vs Data. |
|||||
|
|
As far as I know, DependencyProperty is only required when you need
etc. These features will not be available with normal properties. |
|||
|
|
|
DependencyProperty is required if you want to allow a Binding to be set on the property. Usually this is for custom UIElements you create. You want to allow people to be able to bind data to your UIElements. To do this requires that MyProperty is a dependancy property |
||||
|
|
|
The main problem I see with INotifyPropertyChanges is if you viewmodel is complex containing many nested types it appears that you have to buble the PropertyChanged event up through the hierarchy. |
|||
|
|
