1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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 Валов_проект_ГАИ
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- }
- private void button1_Click(object sender, EventArgs e)
- {
- F_car F_car = new F_car();
- F_car.Show();
- this.Hide();
- }
- private void button2_Click(object sender, EventArgs e)
- {
- F_Voditeli f_Voditeli = new F_Voditeli();
- f_Voditeli.Show();
- this.Hide();
- }
- private void button3_Click(object sender, EventArgs e)
- {
- F_Narushenia f_Narushenia = new F_Narushenia();
- f_Narushenia.Show();
- this.Hide();
- }
- private void button4_Click(object sender, EventArgs e)
- {
- F_Vziskania f_Vziskania = new F_Vziskania();
- f_Vziskania.Show();
- this.Hide();
- }
- }
- }
|