I'd still consider myself a beginner even though I could put CM to good use. I read this nice introduction on Screens and Conductors, etc. from Rob Eisenberg at codeplex. If I understood correctly a Conductor is itself a screen and may show screens.
However I don't see how to start in achieving something like this (very pseudo-code):
XAML
<Grid>
<Left x:Name="Menu" />
<Right x:Name="Content/ActiveItem" />
</Grid>
Now, how can I load two different screens, or maybe conductors, to be shown at those two locations?
I tried to understand from the "HelloScreens" sample, but sadly it's got so many dependencies I don't know how to get it to run. I can see that the ShellView seems to have two targettable areas, one is the usual "ActiveItem" the other is called "Dialogs" but a string search on "Dialogs" reveals nothing. There is too much magic going on there at this point in time.
Hence my question. What's the best strategy to finally get to grips how Views end up in the XAML and how to achieve something as shown above with Caliburn.micro?
Cheers