Caliburn.Micro getting it to bind UserControls in a MainView to their ViewModels
I have a MainView.xaml, binding to a MainViewModel just fine. What I wanted to try out was splitting a lot of controls I have on my main form into UserControls. Now I put the UserControls inside the Views folder along with the MainView and named them, LeftSideControlView.xaml and RightSideControlView.xaml. The corresponding ViewModels are in the ViewModels folder called LeftSideControlViewModel, etc. I successfully added the usercontrols to the mainview: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition /> </Grid.ColumnDefinitions> <UserControls:LeftSideControlView cal