-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlay1Form.cs
51 lines (38 loc) · 1.02 KB
/
Play1Form.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
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 Tic_Tac_Toe__FormsApp
{
public partial class Play1Form : Form
{
public Play1Form()
{
InitializeComponent();
}
private void RTbtnpy1_Click(object sender, EventArgs e)
{
this.Close();
HomeForm back = new HomeForm();
back.Show();
}
private void P1Sbtn_Click(object sender, EventArgs e)
{
Play1vCForm form = new Play1vCForm();
form.pname = nameTextBox.Text;
form.Show();
this.Close();
}
private void RTbtnpy1_Click_1(object sender, EventArgs e)
{
this.Close();
HomeForm back = new HomeForm();
back.Show();
}
}
}