private void FCuerTxtNombre_Validating(object sender, CancelEventArgs e) { if (!fCuerBtnCancelar.Focused) { if (_Validaciones.EsNullOTieneEspaciosEnBlanco(this.fCuerTxtNombre.Text)) { e.Cancel = true; } } }
private void TxtAncho_Validating(object sender, CancelEventArgs e) { if (!_Validaciones.EsDecimal(this.txtAncho.Text) && !_Validaciones.EsNullOTieneEspaciosEnBlanco(this.txtAncho.Text)) { e.Cancel = true; } }