Beispiel #1
0
        //
        // Alta de un plato.
        //
        private void altaDeUnPlatoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AltaPlatoFrm altaPlatoFrm = new AltaPlatoFrm(this);

            this.bloqueaUI();
            altaPlatoFrm.Show();
        }
Beispiel #2
0
        //
        // Boton Alta Plato
        //
        private void botonAltaPlato_Click(object sender, EventArgs e)
        {
            AltaPlatoFrm plato = new AltaPlatoFrm(this);

            plato.Show();
            // Bloquea los botones y la barra de menu.
            this.bloqueaUI();
        }