Example #1
0
 /// <summary>
 /// Method shows the GameTypeWindow by creating a new instance and shows it as a Dialog
 /// </summary>
 public void showGameTypeWindow()
 {
     try
     {
         mGameTypeWindow = new GameTypeWindow(this);
         mGameTypeWindow.ShowDialog();
     }
     catch (Exception e)
     {
         throw e;
     }
 }