private void btnDeckList_Click(object sender, EventArgs e)
 {
     frmDeckList deckListForm = new frmDeckList(currentLanguage);
     this.Hide();
     deckListForm.ShowDialog();
     this.Show();
 }
Пример #2
0
        private void btnDeckList_Click(object sender, EventArgs e)
        {
            frmDeckList deckListForm = new frmDeckList();

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