Esempio n. 1
0
        private void usuárioToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmListaUsuario newMDIChild = new frmListaUsuario();

            // Set the Parent Form of the Child window.
            newMDIChild.MdiParent = this;
            // Display the new form.
            newMDIChild.Show();
        }
Esempio n. 2
0
 private void radMenuUser_Click(object sender, EventArgs e)
 {
     if (LU == null)
     {
         LU             = new frmListaUsuario();
         LU.MdiParent   = this;
         LU.FormClosed += delegate { LU = null; };
         LU.Show();
     }
     else
     {
         MessageBox.Show("Ya esta Abierta la Ventana!!!");
     }
 }
Esempio n. 3
0
        public void TelaListaUsuario()
        {
            frmListaUsuario telaListaUsuario = new frmListaUsuario();

            telaListaUsuario.ShowDialog();
        }