Form1.cs 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 Yslugi_Salona_Krasot
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18. private void b1_Click(object sender, EventArgs e)
  19. {
  20. Form2 f2 = new Form2();
  21. f2.Show();
  22. this.Hide();
  23. }
  24. private void button1_Click(object sender, EventArgs e)
  25. {
  26. Form3 f2 = new Form3();
  27. f2.Show();
  28. this.Hide();
  29. }
  30. private void button2_Click(object sender, EventArgs e)
  31. {
  32. Form4 f2 = new Form4();
  33. f2.Show();
  34. this.Hide();
  35. }
  36. }
  37. }