Form1.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 Form1_Load(object sender, EventArgs e)
  19. {
  20. }
  21. private void button1_Click(object sender, EventArgs e)
  22. {
  23. F_car F_car = new F_car();
  24. F_car.Show();
  25. this.Hide();
  26. }
  27. private void button2_Click(object sender, EventArgs e)
  28. {
  29. F_Voditeli f_Voditeli = new F_Voditeli();
  30. f_Voditeli.Show();
  31. this.Hide();
  32. }
  33. private void button3_Click(object sender, EventArgs e)
  34. {
  35. F_Narushenia f_Narushenia = new F_Narushenia();
  36. f_Narushenia.Show();
  37. this.Hide();
  38. }
  39. private void button4_Click(object sender, EventArgs e)
  40. {
  41. F_Vziskania f_Vziskania = new F_Vziskania();
  42. f_Vziskania.Show();
  43. this.Hide();
  44. }
  45. }
  46. }