-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.cs
63 lines (54 loc) · 1.41 KB
/
MainForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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 HW1
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void EX12_button_Click(object sender, EventArgs e)
{
Form1 form1 = new Form1();
form1.ShowDialog();
}
private void EX3_button_Click(object sender, EventArgs e)
{
Ex3 ex3 = new Ex3();
ex3.ShowDialog();
}
private void EX6_button_Click(object sender, EventArgs e)
{
Ex6 ex6 = new Ex6();
ex6.ShowDialog();
}
private void EX7_button_Click(object sender, EventArgs e)
{
Ex7 ex7 = new Ex7();
ex7.ShowDialog();
}
private void EX8_button_Click(object sender, EventArgs e)
{
BestOil ex8 = new BestOil();
ex8.ShowDialog();
}
private void EX4_button_Click(object sender, EventArgs e)
{
Ex4 ex4 = new Ex4();
ex4.ShowDialog();
}
private void EX5_button_Click(object sender, EventArgs e)
{
Ex5 ex5 = new Ex5();
ex5.ShowDialog();
}
}
}