Form1.cs 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 Бархотные_брови
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18. private void button1_Click(object sender, EventArgs e)
  19. {
  20. Form2 form2 = new Form2();
  21. form2.Show();
  22. this.Hide();
  23. }
  24. private void button2_Click(object sender, EventArgs e)
  25. {
  26. Form2 form3 = new Form2();
  27. form3.Show();
  28. this.Hide();
  29. }
  30. private void button3_Click(object sender, EventArgs e)
  31. {
  32. Form4 form4 = new Form4();
  33. form4.Show();
  34. this.Hide();
  35. }
  36. }
  37. }