1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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 IS31Savelev1
- {
- public partial class Form2 : Form
- {
- public Form2()
- {
- InitializeComponent();
- }
- private void button5_Click(object sender, EventArgs e)
- {
- Form1 f1 = new Form1();
- this.Hide();
- f1.Show();
- MessageBox.Show("Возвращение на авторизацию");
- }
- private void button1_Click(object sender, EventArgs e)
- {
- Form3 f1 = new Form3();
- this.Hide();
- f1.Show();
- }
- private void button2_Click(object sender, EventArgs e)
- {
- Form4 f1 = new Form4();
- this.Hide();
- f1.Show();
- }
- private void button3_Click(object sender, EventArgs e)
- {
- Form5 f1 = new Form5();
- this.Hide();
- f1.Show();
- }
- private void button4_Click(object sender, EventArgs e)
- {
- Form6 f1 = new Form6();
- this.Hide();
- f1.Show();
- }
- }
- }
|