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"); }
public void Initialize(IShellService shellService, IServiceProvider serviceProvider) { shellService.ShowInRegion <ViewAViewModel>("Region2"); }