private void declareResultBtn_Click(object sender, EventArgs e) { if (facade.GameStatus()) { EndGame end = new EndGame(); end.Show(); } else { MessageBox.Show("No game in progress."); } }