private void BtnLimpiarFiltros_Click(object sender, EventArgs e) { _limpiandoFiltros = true; TxtNombre.Text = string.Empty; TxtTitular.Text = string.Empty; CbxBancoPropio.Reset(); CbxTipoCuenta.Reset(); _limpiandoFiltros = false; OnFiltered(sender, e); }
private void UcFiltrosOrdenesPago_Load(object sender, EventArgs e) { //Fix para diseñador. if (Uow == null) { return; } CbxBancoPropio.SeleccionarFinished += OnFiltered; CbxTipoCuenta.SeleccionarFinished += OnFiltered; CbxBancoPropio.CargarBancosPropios(); CbxTipoCuenta.CargarTiposCuentas(); }