What is a dependency property?

.NetWorkflow FoundationDependency Properties

.Net Problem Overview


What is a dependency property in .Net (especially in WPF context). What is the difference from the regular property?

.Net Solutions


Solution 1 - .Net

The only explanation I found helpful and well written is this one: http://www.wpftutorial.net/dependencyproperties.html

Basically, DependencyProperties differ from regular properties in that they're not just setters / getters for fields in the class, but they retrieve their actual values dynamically during runtime. The SetValue() method of DPs is pretty straightforward and sets the local value of the property to the value you gave it. However, when you try to GetValue() from a DependencyProperty, it will first look for a local value, if none is present (which is viable in DependencyProperties unlike regular properties) it will continue up the logical UI tree until it will find such value. If the framework has reached the top of the tree without finding any local values, it will then use a predefined default value as the property's value.

This method allows DependencyProperties to consume less memory than regular properties since only values that were explicitly set by the user will be stored locally.

And, as mentioned above, DependencyProperties also allow us to bind to them in the XAML code and set triggers on them, which on regular properties is not allowed.

I hope I've managed to clear some of the vagueness :)

Solution 2 - .Net

Dependency properties are properties of classes that derive from DependencyObject, and they're special in that rather than simply using a backing field to store their value, they use some helper methods on DependencyObject.

The nicest thing about them is that they have all the plumbing for data binding built in. If you bind something to them, they'll notify it when they change.

Solution 3 - .Net

http://techpunch.wordpress.com/2008/09/25/wpf-wf-what-is-a-dependency-property/ provides a good explanation of dependency properties both in the context of WF and WPF.

An excerpt:

> Key Point – The Value of Dependency Properties Are Resolved > > The ultimate goal of a dependency property, like any property, is to manage state. But unlike normal .Net properties, the local property value is not stored in an instance variable. > > Instead, dependency properties are registered with the dependency property framework, and the underlying property value is resolved – meaning the value is determined by the dependency property framework based on rules defined by the property registration.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questione11sView Question on Stackoverflow
Solution 1 - .NetJonathan PerryView Answer on Stackoverflow
Solution 2 - .NetMatt HamiltonView Answer on Stackoverflow
Solution 3 - .NetAsh MView Answer on Stackoverflow