Dependent properties
I am new to WPF.. Can anyone tell.. What exactly the depentent properties means?..
How it differ from normal prope开发者_Python百科rties??? and can i edit the design page in asp 3.5 while am i running the application, because the same is possible in asp 2.0.
You'd use a DependencyProperty
when you want to support the setting of the property from XAML code (rather than just procedurally)
Dependency properties depend on multiple providers for determining its value at any one point. These providers could be constantly changing its value. Dependency properties also support change notiication (as do standard properties if you implement the correct interfaces, dependency properties just make that so much easier, as they can be added with simple XAML code).
精彩评论