Exemplo n.º 1
0
        private void menu_btn_Click(object sender, EventArgs e)
        {
            this.Hide();
            Form_Menu fm = new Form_Menu(this.Location);

            fm.ShowDialog();
            this.Close();
        }
Exemplo n.º 2
0
        private void applySave_btn_Click(object sender, EventArgs e)
        {
            switchLanguage();
            this.Hide();
            Form_Menu fm = new Form_Menu(this.Location);

            fm.ShowDialog();
            this.Close();
        }
Exemplo n.º 3
0
        private void btn_backMenu_Click(object sender, EventArgs e)
        {
            ShutDown();
            this.Hide();
            Form_Menu fm = new Form_Menu(this.Location);

            fm.ShowDialog();
            this.Close();
        }
Exemplo n.º 4
0
        //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();
        }