protected override void OnAppearing()
        {
            base.OnAppearing();

            if (_noteIndex != -1)
            {
                BindingContext = _noteManager.MyNotes[_noteIndex];
            }
            else
            {
                BindingContext = new MyNote();
            }
        }
Example #2
0
 public MyNote(MyNote copy)
 {
     this.NoteTitle = copy.NoteTitle;
     this.NoteText  = copy.NoteText;
     this.TimeStamp = copy.TimeStamp;
 }