示例#1
0
文件: View.cs 项目: peleccom/chess
 public void ShowStatistic()
 {
     if (game.Player1 != null && game.Player2 != null)
     {
         StatisticForm form = new StatisticForm(game.Player1, game.Player2);
         form.ShowDialog();
     }
 }
示例#2
0
文件: View.cs 项目: peleccom/chess
 public void ShowStatistic()
 {
     if (game.Player1 != null && game.Player2 != null)
     {
         StatisticForm form = new StatisticForm(game.Player1, game.Player2);
         form.ShowDialog();
     }
 }