Form1.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace IS_hairdresser
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18. private void button7_Click(object sender, EventArgs e)
  19. {
  20. LIST_FORM fr = new LIST_FORM();
  21. this.Hide();
  22. fr.Show();
  23. }
  24. private void button2_Click(object sender, EventArgs e)
  25. {
  26. Warehouse_FORM fr = new Warehouse_FORM();
  27. this.Hide();
  28. fr.Show();
  29. }
  30. private void button3_Click(object sender, EventArgs e)
  31. {
  32. Purchase_FORM Form3 = new Purchase_FORM();
  33. this.Hide();
  34. Form3.Show();
  35. }
  36. private void button4_Click(object sender, EventArgs e)
  37. {
  38. Deliveries_FORM Form4 = new Deliveries_FORM();
  39. this.Hide();
  40. Form4.Show();
  41. }
  42. private void button5_Click(object sender, EventArgs e)
  43. {
  44. Used_consumables_FORM Form5 = new Used_consumables_FORM();
  45. this.Hide();
  46. Form5.Show();
  47. }
  48. private void button6_Click(object sender, EventArgs e)
  49. {
  50. Consumables_sold_FORM Form6 = new Consumables_sold_FORM();
  51. this.Hide();
  52. Form6.Show();
  53. }
  54. }
  55. }