private void btnStandings_Click(object sender, EventArgs e) { if (frmStandings != null) { frmStandings.Close(); } frmStandings = new FormStandings(); frmStandings.MdiParent = this; frmStandings.Show(); }
public FormMain(FormLogin frmLogin) { InitializeComponent(); this.frmLogin = frmLogin; frmStandings = null; frmRounds = null; frmAllTipsters = null; frmStatistics = null; frmMyProfile = null; frmAllPlayers = null; pbMusic.Location = new Point(this.Width - 2 * pbMusic.Width, pbMusic.Location.Y); if (!FormLogin.musicOn) { pbMusic.Image = Image.FromFile("imgMusicOff.png"); } }