123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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 yshakov
- {
- public partial class Form2 : Form
- {
- public Form2()
- {
- InitializeComponent();
- }
- private void button3_Click(object sender, EventArgs e)
- {
- Form4 frm = new Form4();
- this.Hide();
- frm.Show();
- }
- private void button5_Click(object sender, EventArgs e)
- {
- Form5 frm = new Form5();
- this.Hide();
- frm.Show();
- }
- private void button2_Click(object sender, EventArgs e)
- {
- Form1 frm = new Form1();
- this.Hide();
- frm.Show();
- }
- private void button4_Click(object sender, EventArgs e)
- {
- Form6 frm = new Form6();
- this.Hide();
- frm.Show();
- }
- }
- }
|