コード例 #1
0
 internal void LoadScores(Scores _Scores)//(object sender, RoutedEventArgs e)
 {
     this._Scores = _Scores;
     this.Dispatcher.Invoke(new Action(RefreshScores));
 }
コード例 #2
0
 private void PersistScore(Score _Score)
 {
     this.GameScores.Add(_Score);
     Scores.SerializeData(this.GameScores);
     this.LoadScores();
 }
コード例 #3
0
ファイル: Scores.cs プロジェクト: R-Thor/Archive
 internal static Scores SortByDateDesc(Scores Scores)
 {
     Scores.Sort(CompareDate);
     Scores.Reverse();
     return(Scores);
 }
コード例 #4
0
ファイル: Scores.cs プロジェクト: R-Thor/Archive
 internal static Scores SortByDate(Scores Scores)
 {
     Scores.Sort(CompareDate);
     return(Scores);
 }
コード例 #5
0
ファイル: Game.cs プロジェクト: R-Thor/Archive
 public Game()
 {
     //this.
     Scores.DeserializeFromXML(ref this.GameScores);
 }
コード例 #6
0
 void ScoreContainer_CellEditEnding(object sender, DataGridCellEditEndingEventArgs e)
 {
     Scores.SerializeData(this.GAME.GameScores);
     //this.MainWindow.ScoreContainer.
 }