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 DEM_Timofeev_prob { public partial class Form_add : Form { public Form_add() { InitializeComponent(); } private void button3_Click(object sender, EventArgs e) { this.Hide(); Form_admin ff = new Form_admin(); ff.Show(); } } }