Answer:
Dependency properties are properties of one class and used by another class.
Let’s understand by an example:
<Ellipse Height=”70” Width=”70” Canvas.Right=”20” Canvas.Top=”30” />
Here ‘Canvas.Right’ and ‘Canvas.Top’ are dependency properties as it used by Ellipse to specify position within Canvas though it’s not properties of Ellipse.
Asked In: Many Interviews |
Alert Moderator