DependencyProperty is represents a property that can be set through methods such as, styling, data binding, animation, and inheritance.The main reason to create DependencyProperty is when we write own WPF control. DependencyProperties can be used as binding source and target, and can be animated.Properties of all framework's controls are implemented as DependencyProperty, that why we can make powerful data binding in XAML.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
DependencyProperty is represents a property that can be set through methods such as, styling, data binding, animation, and inheritance.The main reason to create DependencyProperty is when we write own WPF control. DependencyProperties can be used as binding source and target, and can be animated.Properties of all framework's controls are implemented as DependencyProperty, that why we can make powerful data binding in XAML.