I am thinking about writing a WPF User Control for my application. I am using MVVM in my application.
User control's may require Dependency Properties that can be set my Parent View. when using MVVM, the idea is that the Parent View will eventually create a binding between the UserControls DP with Parent View's VM)
Dependency Properties need to be created in the View class as VM do not inherit from DependencyObject. This means adding code within the XAML codebehind.
I was wondering if you can give advice as to how I should design a user control when developing WPF application using MVVM...