It is possible have more active screen / view in one shell if I am using caliburn micro ?

Something like this, code for shell view - wpf window:

        <ContentControl x:Name="ActiveItem_1" Grid.Row=1/>

        <ContentControl x:Name="ActiveItem_2" Grid.Row=2/>


        <ContentControl x:Name="ActiveItem_9" Grid.Row=9/>

Thank you for advice, or in which MVVM this possible?

link|improve this question
feedback

1 Answer

Yes. This is possible with...

Conductor<T>.Collection.AllActive

http://caliburnmicro.codeplex.com/wikipage?title=Screens, Conductors and Composition

  1. Inherit the class above in your ShellViewModel.
  2. Populate the Shell iewModels Items property with the ViewModels for the views that you want to display within the ShellView.
  3. Bind the ItemsSource property of an ItemsControl (you should not need an ItemTemplate) in the ShellView to the Items property on the ShellViewModel.

I am fairly sure that Caliburn.Micro will look after the rest but I am unable to test at the moment.

link|improve this answer
Thank you, can you provide for me some simple example ho to use it Conductor<T>.Collection.AllActive ? Some code for shell, view models, and view - XAML. Thank you – user572844 Aug 6 '11 at 13:25
Check out the HelloScreens sample that comes with the CM download. – Derek Beattie Aug 6 '11 at 21:44
I added a high level description of how this can work. – Scott Munro Aug 6 '11 at 22:33
feedback

Your Answer

 
or
required, but never shown