private void btnGuardar_Click(object sender, EventArgs e)
 {
     try
     {
         this.txtMensajeError.Visible = false;
         List <Error> Errores = this.ValidarDatos();
         if (Errores.Count == 0)
         {
             Usuario         Datos = this.ObtenerDatos();
             Usuario_Negocio CN    = new Usuario_Negocio();
             CN.ABCCuentaUsuario(Datos);
             if (Datos.Completado)
             {
                 MessageBox.Show("Datos guardados correctamente.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Information);
                 this._DatosUsuario = Datos;
                 this.DialogResult  = DialogResult.OK;
             }
             else
             {
                 //if (Datos.Resultado > 0)
                 //{
                 List <Error> LstError = new List <Error>();
                 LstError.Add(new Error {
                     Numero = 1, Descripcion = "La cuenta de usuario ya existe.", ControlSender = this
                 });
                 this.MostrarMensajeError(LstError);
                 //}
                 //else
                 //    MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error);
             }
         }
         else
         {
             this.MostrarMensajeError(Errores);
         }
     }
     catch (Exception ex)
     {
         LogError.AddExcFileTxt(ex, "frmCuentaEmpleado ~ btnGuardar_Click");
         MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }