private void menu_btn_Click(object sender, EventArgs e) { this.Hide(); Form_Menu fm = new Form_Menu(this.Location); fm.ShowDialog(); this.Close(); }
private void applySave_btn_Click(object sender, EventArgs e) { switchLanguage(); this.Hide(); Form_Menu fm = new Form_Menu(this.Location); fm.ShowDialog(); this.Close(); }
private void btn_backMenu_Click(object sender, EventArgs e) { ShutDown(); this.Hide(); Form_Menu fm = new Form_Menu(this.Location); fm.ShowDialog(); this.Close(); }
//save the settings in the .NET properties file private void save_btn_Click(object sender, EventArgs e) { Properties.Settings.Default.fullscreen = fullscreen_chkBox.Checked; this.Hide(); Form Form_Menu = new Form_Menu(this.Location); Form_Menu.ShowDialog(); this.Close(); }