コード例 #1
0
ファイル: FormPrincipal.cs プロジェクト: nMoschen/NET_TP2
 private void registrarNuevoEmpleadoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     FormRegistrarPersona registrarEmpleado = new FormRegistrarPersona(Persona.eRol.Empleado);
     registrarEmpleado.MdiParent = this;
     registrarEmpleado.Show();
 }
コード例 #2
0
ファイル: FormPrincipal.cs プロジェクト: nMoschen/NET_TP2
 private void registrarNuevoClienteToolStripMenuItem_Click(object sender, EventArgs e)
 {
     FormRegistrarPersona registrarCliente = new FormRegistrarPersona(Persona.eRol.Cliente);
     registrarCliente.MdiParent = this;
     registrarCliente.Show();
 }