コード例 #1
0
ファイル: MainCommands.cs プロジェクト: chris84948/noted
 public MainCommands(HomeViewModel homeVM, AllNotesViewModel allNotesVM)
 {
     _homeVM     = homeVM;
     _allNotesVM = allNotesVM;
 }
コード例 #2
0
ファイル: FormatCommands.cs プロジェクト: chris84948/noted
 public FormatCommands(HomeViewModel homeVM, TextEditor tbNote)
 {
     _homeVM = homeVM;
     _homeVM.AllNotes.TextEditor = tbNote;
 }
コード例 #3
0
 public MainWindowViewModel()
 {
     CurrentViewModel = new HomeViewModel();
     CurrentViewModel.ChangeScreen += CurrentViewModel_ChangeScreen;
     (CurrentViewModel as HomeViewModel).ShowDialog += CurrentViewModel_ShowDialog;
 }