示例#1
0
        private void btbINGRESARPRODUCTO_Click(object sender, EventArgs e)
        {
            AgregarProducto agregarProducto = new AgregarProducto();

            agregarProducto.ShowDialog();
            DisplayProducto();
        }
示例#2
0
        private void btnEditar_Click(object sender, EventArgs e)
        {
            int?id = GetId();

            if (id != null)
            {
                AgregarProducto agregarProducto = new AgregarProducto(id);
                agregarProducto.ShowDialog();
                DisplayProducto();
            }
        }