private void docenteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MantenedorDocentes mantD = new MantenedorDocentes();

            mantD.MdiParent = this;
            mantD.Show();
        }
Example #2
0
        private void docenteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //hace el llamdo al formulario mantenedor Docentes
            MantenedorDocentes mantD = new MantenedorDocentes();

            mantD.MdiParent = this;
            mantD.Show();
        }