Beispiel #1
0
 private void Client_GamesCompleted(object sender, EruditServiceReference.GamesCompletedEventArgs e)
 {
     ServiceContext.Instance.Client.GamesCompleted -= this.Client_GamesCompleted;
       try
       {
     this.gameInfos = new ObservableCollection<GameInfo>(e.Result);
     this.gameList.ItemsSource = this.gameInfos;
       }
       catch (Exception ex)
       {
     MessageBox.Show(ex.Message);
       }
 }
Beispiel #2
0
 public LetterCell(EruditServiceReference.Cell cell)
     : this()
 {
     this.DataContext = cell;
 }