How to bind a property defined as usercontrol in XAML?
- by EricSch
In XAML (Root is a UserControl), I have defined a grid with two columns.
In a ViewModel layer, I have defined a property as UserControl.
The ViewModel is set as DataContext of the XAML.
How I can bind this property of type UserControl declarative to the grid?
Thanks