예제 #1
0
        public async override void ViewWillAppear(bool animated)
        {
            base.ViewWillAppear(animated);

            List <Note> notes = null;

            await Task.Run(() => {
                notes = _viewModel.GetNotes(Settings.UserId);
            });

            _noteSource.SDSource   = notes;
            _notesTableView.Source = _noteSource;
            _notesTableView.ReloadData();
        }