InterviewSolution
Saved Bookmarks
| 1. |
What are Attached properties in WPF? |
|
Answer» An attached property is a concept in XAML (Extensible Application Markup Language). ESSENTIALLY, these properties ENABLE you to assign extra properties/values to any XAML element, even if it doesn't define them in its object model. As a special type of DependencyProperty, you can apply it to any DependencyObject to enhance the behavior of various controls and services. Attached properties would be useful in the following cases:
|
|