Example #1
0
        private void ButDishes_Click(object sender, EventArgs e)
        {
            DishesForm dishesForm = new DishesForm(this);

            dishesForm.Show();
            this.WindowState = FormWindowState.Minimized;
        }
Example #2
0
        private void recipesToolStripMenuItem_Click(object sender, System.EventArgs e)
        {
            var f = new DishesForm();

            f.Show();
        }