예제 #1
0
 public NoteEntryPage()
 {
     InitializeComponent();
     if (BindingContext == null)
     {
         BindingContext = new NoteEntryPageViewModel();
     }
 }
예제 #2
0
 public NoteEntryPage(Note note) : this()
 {
     BindingContext = new NoteEntryPageViewModel(note);
 }