tags:

views:

31

answers:

3

Hi

I am new to WPF.. Can anyone tell.. What exactly the depentent properties means?..

How it differ from normal properties??? 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.

+2  A: 

You'd use a DependencyProperty when you want to support the setting of the property from XAML code (rather than just procedurally)

Rowland Shaw
A: 

MSDN is your friend.

HTH,
Kent

Kent Boogaart
A: 

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).

Ben