-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainform1.cs
More file actions
54 lines (44 loc) · 1.24 KB
/
mainform1.cs
File metadata and controls
54 lines (44 loc) · 1.24 KB
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
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;
using System.IO;
namespace Teamproject1
{
public partial class mainform1 : Form
{
public mainform1()
{
InitializeComponent();
}
private void gobutton_Click(object sender, EventArgs e)
{
this.Hide();
graghform2 graphform = new graghform2();
graphform.Show();
}
private void loginbutton_Click(object sender, EventArgs e)
{
this.Hide();
loginform2 loginform1 = new loginform2();
loginform1.Show();
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
profileform profileform1 = new profileform();
profileform1.Show();
}
private void button2_Click(object sender, EventArgs e)
{
this.Hide();
showfashionform3 showfashionform1 = new showfashionform3();
showfashionform1.Show();
}
}
}