public async void OnAdd(object sender, EventArgs e) { if (!string.IsNullOrWhiteSpace(NewItemName.Text)) { var todo = new TodoItem { Text = NewItemName.Text }; await AddItem(todo); NewItemName.Text = ""; NewItemName.Unfocus(); } }
async Task CompleteItem(TodoItem item) { item.Complete = true; await _azureForMobileService.Data.LocalTable<TodoItem>().UpdateAsync(item); ToDoItems.ItemsSource = await GetTodoItemsAsync(); }
async Task AddItem(TodoItem item) { await _azureForMobileService.Data.LocalTable<TodoItem>().InsertAsync(item); ToDoItems.ItemsSource = await GetTodoItemsAsync(); }