Exemple #1
0
 public void Initialize(IShellService shellService, IServiceProvider serviceProvider)
 {
     //shellService.ShowInRegion("Region1", typeof(ViewA));
     shellService.ShowInRegion <ViewAViewModel>("Region1");
 }
 public MainWindowViewModel(IShellService shellService)
 {
     this.shellService = shellService;
     shellService.ShowInRegion("Region1", "Hallo Welt");
 }
Exemple #3
0
 public void Initialize(IShellService shellService, IServiceProvider serviceProvider)
 {
     shellService.ShowInRegion <ViewAViewModel>("Region2");
 }