Esempio n. 1
0
        // Inicializar instancias

        void inicializar(VistaSeleccionWf vistaSel)
        {
            indizarBotonesBarra();
            this.KeyPreview       = true;
            this.KeyDown         += new KeyEventHandler(CapturaTeclado);
            this.edicionBloqueada = false;
            this.vistaSeleccion   = vistaSel;
            this.controlFichero   = null;
        }
Esempio n. 2
0
        //---------------------------------------//
        //    M é t o d o s   p ú b l i c o s    //
        //---------------------------------------//

        // Establecer Controlador de Lista interno

        public void EstablecerControlFichero(IControladorFicheroMaestro ctrl)
        {
            this.controlFichero            = ctrl;
            this.IntencionCancelarEdicion += new IntencionCancelarManejador(this.controlFichero.IntentoCancelarEdicion);
        }