public NoteEntryPage() { InitializeComponent(); if (BindingContext == null) { BindingContext = new NoteEntryPageViewModel(); } }
public NoteEntryPage(Note note) : this() { BindingContext = new NoteEntryPageViewModel(note); }