Пример #1
0
        private void button6_Click(object sender, EventArgs e)
        {
            this.Hide();
            var form = new AddValueToSklad();

            form.Closed += (s, args) => this.Close();
            form.Show();
        }
Пример #2
0
        private void button2_Click(object sender, EventArgs e)
        {
            DialogResult result = MessageBox.Show(
                "Вы точно хотите перейти?",
                "Сообщение",
                MessageBoxButtons.YesNo,
                MessageBoxIcon.Information,
                MessageBoxDefaultButton.Button1);

            if (result == DialogResult.Yes)
            {
                this.Hide();
                var form = new AddValueToSklad();
                form.Closed += (s, args) => this.Close();
                form.Show();
            }
        }