using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace BBrovki1Z { public partial class Form9 : Form { public Form9() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { // выход из программы Application.Exit(); } private void button2_Click(object sender, EventArgs e) { // Возвращение на форму 5 Form5 f5 = new Form5(); f5.Show(); this.Hide(); } } }