private void newToolStripMenuItem_Click(object sender, EventArgs e) { NewGameForm form = new NewGameForm(); if (form.ShowDialog() == System.Windows.Forms.DialogResult.OK) { Game = form.Game; FileLocation = null; Refresh(); } }