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