Ejemplo n.º 1
0
        private void btnWordList_Click(object sender, EventArgs e)
        {
            this.Hide();
            WordListDialog wld = new WordListDialog(wl);

            wld.Show();
        }
Ejemplo n.º 2
0
        private void btnDetails_Click(object sender, EventArgs e)
        {
            String strWord = test.GetWord();

            if (strWord != null)
            {
                this.Hide();
                WordListDialog wld = new WordListDialog(test.GetWordlist(), strWord);
                wld.Show();
            }
        }