Exemplo n.º 1
0
 void dataServiceDataSource_SubmittedChanges(object sender, DataServiceSubmittedChangesEventArgs e)
 {
     if (e.HasError)
         e.MarkErrorAsHandled();
     
     SignersViewdataServiceDataSource.Load();
 }
Exemplo n.º 2
0
        void dataServiceDataSource_SubmittedChanges(object sender, DataServiceSubmittedChangesEventArgs e)
        {

            if (e.HasError)
            {
                RadWindow win = new RadWindow();
                win.Content = "error " + e.Error.ToString();
                win.ShowDialog();
            }
            
            AccountsdataServiceDataSource.Load();
        }
Exemplo n.º 3
0
 private void QueryableDataServiceCollectionView_SubmittedChanges(object sender,
     DataServiceSubmittedChangesEventArgs e)
 {
     MessageDialogs.Alert("提示", e.HasError ? "保存失败,请检查。" : "保存成功。");
 }
 void Accounts_Signers_EntitlementsDataSource_SubmittedChanges(object sender, DataServiceSubmittedChangesEventArgs e)
 {
     if (e.HasError)
            e.MarkErrorAsHandled();
 }