예제 #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="noteViewModel"></param>
 public DeleteCommand(ViewModels.NoteViewModel noteViewModel)
 {
     this.noteViewModel = noteViewModel;
     this.delete        = new Views.DeleteNoteDialog();
 }
예제 #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="noteViewModel"></param>
 public EditCommand(ViewModels.NoteViewModel noteViewModel)
 {
     this.noteViewModel = noteViewModel;
 }
예제 #3
0
 public BoldCommand(ViewModels.NoteViewModel vm)
 {
     this.vm = vm;
 }
예제 #4
0
 public UnderlineCommand(ViewModels.NoteViewModel vm)
 {
     this.vm = vm;
 }
예제 #5
0
 public ItalicCommand(ViewModels.NoteViewModel vm)
 {
     this.vm = vm;
 }
예제 #6
0
 public FontDecrease(ViewModels.NoteViewModel vm)
 {
     this.vm = vm;
 }
예제 #7
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="noteViewModel"></param>
 public SaveCommand(ViewModels.NoteViewModel noteViewModel)
 {
     this.noteViewModel = noteViewModel;
 }