private void LoadSavedOrderButton_Click(object sender, EventArgs e)
        {
            ProductInfoForm ProductInformationForm = new ProductInfoForm();

            ProductInformationForm.Show();
            this.Hide();
        }
Пример #2
0
        private void NextSelectionButton_Click(object sender, EventArgs e)
        {
            this.Hide();
            // set the fields of selected Item for the ProductInfoForm
            setSelectedItemForNextForm();
            ProductInfoForm PIF = new ProductInfoForm();

            PIF.Show();
        }