Exemplo n.º 1
0
 public NoteEntryPage()
 {
     InitializeComponent();
     if (BindingContext == null)
     {
         BindingContext = new NoteEntryPageViewModel();
     }
 }
Exemplo n.º 2
0
 public NoteEntryPage(Note note) : this()
 {
     BindingContext = new NoteEntryPageViewModel(note);
 }