コード例 #1
0
ファイル: App.xaml.cs プロジェクト: hpolekha/Bookshelf_WPF
 protected override void OnStartup(StartupEventArgs e)
 {
     base.OnStartup(e);
     ViewModels.BookListViewModel bookListViewModel = new ViewModels.BookListViewModel(BooksModel);
     WindowService.Show(bookListViewModel);
 }
コード例 #2
0
        // BookList managing

        public void NewWindow()
        {
            BookListViewModel bookListViewModel = new BookListViewModel(BooksModel);

            ((App)Application.Current).WindowService.Show(bookListViewModel);
        }