コード例 #1
0
ファイル: PpalFrm.cs プロジェクト: BianchiniG/tp-final-cs
        //
        // Alta de un ingrediente.
        //
        private void altaDeUnIngredienteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AltaIngrFrm altaIngrFrm = new AltaIngrFrm(this);

            this.bloqueaUI();
            altaIngrFrm.Show();
        }
コード例 #2
0
ファイル: PpalFrm.cs プロジェクト: BianchiniG/tp-final-cs
        //
        // Boton Alta Ingrediente
        //
        private void botonAltaIngr_Click(object sender, EventArgs e)
        {
            AltaIngrFrm ingr = new AltaIngrFrm(this);

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