InterviewSolution
Saved Bookmarks
| 1. |
What are Dependency properties in WPF? |
|
Answer» WPF dependency properties are properties that extend the functionality of CLR (Common LANGUAGE Runtime) properties. Dependency properties are those whose value is dependent on external sources (value from other inputs), such as animation, data binding, styles, themes, and USER preferences, or visual TREE inheritance. These properties provide self-contained validation, default values, monitoring of changed properties, and other runtime information. Advantages of Dependency Property:
|
|