コード例 #1
0
 private async void UpdateCheckedTodoItem(TodoItem item)
 {
     // This code takes a freshly completed TodoItem and updates the database. When the MobileService 
     // responds, the item is removed from the list.
     await todoTable.UpdateAsync(item);
     RefreshTodoItems();
 }
コード例 #2
0
 private async void InsertTodoItem(TodoItem todoItem)
 {
     // This code inserts a new TodoItem into the database. When the operation completes
     // and Mobile Services has assigned an Id, the item is added to the CollectionView
     try
     {
         await todoTable.InsertAsync(todoItem);
         items.Add(todoItem);
     }
     catch (HttpRequestException)
     {
         ShowError();
     }
 }
コード例 #3
0
 private void ButtonSave_Click(object sender, RoutedEventArgs e)
 {
     var todoItem = new TodoItem { Text = TextInput.Text, CreatedAt = DateTime.Now };
     InsertTodoItem(todoItem);
 }