Example #1
0
 void service_GetAlarmProcessItemCompleted(object sender, GetAlarmProcessItemCompletedEventArgs e)
 {
     this.Busy.IsBusy = false;
     if (e.Error != null)
     {
         e.Error.ShowError();
         return;
     }
     DetailGrid.ItemsSource = e.Result.ToList();
 }
Example #2
0
 void service_GetAlarmProcessItemCompleted(object sender, GetAlarmProcessItemCompletedEventArgs e)
 {
     this.Busy.IsBusy = false;
     if (e.Error != null)
     {
         e.Error.ShowError();
         return;
     }
     DetailGrid.ItemsSource = e.Result.ToList();
 }