private void showScoreInfo_Click(object sender, EventArgs e)
 {
     if (_score == null)
     {
         return;
     }
     using (ScoreInfoWindow window = new ScoreInfoWindow(_score))
     {
         window.ShowDialog(this);
     }
 }
Exemple #2
0
 private void showScoreInfo_Click(object sender, EventArgs e)
 {
     if (_score == null) return;
     using (ScoreInfoWindow window = new ScoreInfoWindow(_score))
     {
         window.ShowDialog(this);
     }
 }