Hi ppl,
Could you please share a concept of DependencyObject and dependency properties?
share example source code and also the real life example.
Thanks,
Mursaleen Fayyaz
Jr.Software Engineer
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Jul 4, 2013, 4:28 AM
hi,
with refer to WPF,
DependencyObject is class that represent the object that participates in the dependency property.
Most of the WPF classes derive from Dependency Object. All UI Elements are derived from Dependency Object.Dependency Object defines WPF Property System.
Please refer
http://msdn.microsoft.com/en-us/library/system.windows.dependencyobject.aspx
for Dependencyproperty please refer
http://msdn.microsoft.com/en-us/library/ms752914.aspx
http://www.codeproject.com/Articles/140620/WPF-Tutorial-Dependency-Property
hope this will help you.