vote up 3 vote down star

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

flag

36% accept rate

2 Answers

vote up 4 vote down check

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.

There's a great overview of them here on MSDN.

link|flag
vote up 4 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.