Beispiel #1
0
        private void UcFiltrosSubTema_Load(object sender, EventArgs e)
        {
            if (Uow == null)
            {
                return;
            }

            CbxTemas.SeleccionarFinished += CambioTema;
            CbxTemas.CargarTemas();
        }
Beispiel #2
0
        private void BtnLimpiar_Click(object sender, EventArgs e)
        {
            _limpiandoFiltros = true;

            TxtNombre.Text = string.Empty;
            CbxTemas.Reset();

            _limpiandoFiltros = false;

            OnFiltered();
        }