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 IS_hairdresser { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button7_Click(object sender, EventArgs e) { LIST_FORM fr = new LIST_FORM(); this.Hide(); fr.Show(); } private void button2_Click(object sender, EventArgs e) { Warehouse_FORM fr = new Warehouse_FORM(); this.Hide(); fr.Show(); } private void button3_Click(object sender, EventArgs e) { Purchase_FORM Form3 = new Purchase_FORM(); this.Hide(); Form3.Show(); } private void button4_Click(object sender, EventArgs e) { Deliveries_FORM Form4 = new Deliveries_FORM(); this.Hide(); Form4.Show(); } private void button5_Click(object sender, EventArgs e) { Used_consumables_FORM Form5 = new Used_consumables_FORM(); this.Hide(); Form5.Show(); } private void button6_Click(object sender, EventArgs e) { Consumables_sold_FORM Form6 = new Consumables_sold_FORM(); this.Hide(); Form6.Show(); } } }