Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How is WPF's DependencyObject implemented? [closed]

Are there any articles that describe how the DependencyObject class in WPF works "under the hood"?

Specifically, I'm curious about how dependency properties are stored and accessed efficiently.

like image 736
Tony the Pony Avatar asked May 23 '11 21:05

Tony the Pony


1 Answers

As we know, a dependency property can be defined only on types that subclass DependencyObject. This base class defines a key value dictionary, that contains the local values of dependency properties.

When a dependency property is accessed, it's value is dynamically resolved (via the GetValue(dependencyproperty) in the .Net wrapper). For greater detail, check here: http://wpftutorial.net/DependencyProperties.html

like image 89
Hasanain Avatar answered Oct 26 '22 23:10

Hasanain