Esempio n. 1
0
        private void comoConfigurarToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (ayuda == null)
            {
                ayuda = new frmAyuda();

                ayuda.MdiParent   = this.MdiParent;
                ayuda.FormClosed += new FormClosedEventHandler(AyudaFormClosed);
                ayuda.Show();
            }
        }
Esempio n. 2
0
 private void AyudaFormClosed(object sender, EventArgs e)
 {
     ayuda = null;
 }