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