예제 #1
0
 private void _svc_GetNotesCompleted(object sender, GetNotesCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         this.Notes = e.Result;
     }
     else
     {
         MessageBox.Show("Failed to get the notes. Please ty again!");
     }
 }
예제 #2
0
 private void _svc_GetNotesCompleted(object sender, GetNotesCompletedEventArgs e)
 {
     if(e.Error == null) {
         this.Notes = e.Result;
     }
     else {
         MessageBox.Show("Failed to get the notes. Please ty again!");
     }
 }