//CONSTRUCTOR PARA MODIFICACION, BAJA Y CONSULTA public FormularioUsuario(int ID, ModosFormulario modo) : this() { this.Modo = modo; Negocio.LogicaUsuario usuario = new Negocio.LogicaUsuario(); UsuarioActual = usuario.TraerUno(ID); MapearDeDatos(); this.txtID.ReadOnly = true; if (this.Modo == ModosFormulario.Baja) { this.txtNombre.ReadOnly = true; this.txtApellido.ReadOnly = true; this.txtClave.ReadOnly = true; this.txtConfirmarClave.ReadOnly = true; this.txtID.ReadOnly = true; this.txtCorreoE.ReadOnly = true; this.txtUsuario.ReadOnly = true; this.chkHabilitado.Enabled = true; this.txtPrivilegio.ReadOnly = true; } }