private void btnAccept_Click(object sender, EventArgs e) { this.HomeTeamScore = (int) this.numHomeScore.Value; this.AwayTeamScore = (int) this.numAwayScore.Value; this.Match.InputGameScore(this.HomeTeamScore, this.AwayTeamScore); var goalScorers = new EditMatchGoalScorers(this.Match); goalScorers.ShowDialog(); this.Close(); }
private void addEditGoalScorersToolStripMenuItem_Click(object sender, EventArgs e) { var goalScorers = new EditMatchGoalScorers(this.Match); goalScorers.ShowDialog(); }