private void btnConfig_Click(object sender, EventArgs e)
 {
     frmConfig configForm = new frmConfig(currentLanguage);
     this.Hide();
     configForm.ShowDialog();
     this.Show();
 }
Exemple #2
0
        private void btnConfig_Click(object sender, EventArgs e)
        {
            frmConfig configForm = new frmConfig();

            this.Hide();
            configForm.ShowDialog();
            this.Show();
        }