Inheritance: System.Windows.Forms.Form
Exemple #1
0
        private void PronunciationSetupToolStripMenuItem_Click(object sender, EventArgs e)
        {
            PronunciationForm form = new PronunciationForm();

            if (form.ShowDialog() == DialogResult.OK)
            {
                LoadConfig();
            }
        }
 private void PronunciationSetupToolStripMenuItem_Click(object sender, EventArgs e)
 {
     PronunciationForm form=new PronunciationForm();
     if (form.ShowDialog() == DialogResult.OK)
     {
         LoadConfig();
     }
 }