-
Notifications
You must be signed in to change notification settings - Fork 0
/
TicTacToe Menu .Designer.cs
146 lines (141 loc) · 6.61 KB
/
TicTacToe Menu .Designer.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
namespace TicTacToe
{
partial class TicTacToe_Menu
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.button11 = new System.Windows.Forms.Button();
this.button10 = new System.Windows.Forms.Button();
this.button12 = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.panel3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// button11
//
this.button11.Font = new System.Drawing.Font("Showcard Gothic", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button11.ForeColor = System.Drawing.Color.Orange;
this.button11.Location = new System.Drawing.Point(6, 3);
this.button11.Name = "button11";
this.button11.Size = new System.Drawing.Size(485, 125);
this.button11.TabIndex = 6;
this.button11.Text = "Start ";
this.button11.UseVisualStyleBackColor = true;
this.button11.Click += new System.EventHandler(this.StartGame);
//
// button10
//
this.button10.Font = new System.Drawing.Font("Showcard Gothic", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button10.ForeColor = System.Drawing.SystemColors.MenuHighlight;
this.button10.Location = new System.Drawing.Point(6, 3);
this.button10.Name = "button10";
this.button10.Size = new System.Drawing.Size(485, 125);
this.button10.TabIndex = 7;
this.button10.Text = "Rules";
this.button10.UseVisualStyleBackColor = true;
this.button10.Click += new System.EventHandler(this.button10_Click);
//
// button12
//
this.button12.Font = new System.Drawing.Font("Showcard Gothic", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button12.ForeColor = System.Drawing.Color.Red;
this.button12.Location = new System.Drawing.Point(6, 3);
this.button12.Name = "button12";
this.button12.Size = new System.Drawing.Size(485, 125);
this.button12.TabIndex = 8;
this.button12.Text = "Leave";
this.button12.UseVisualStyleBackColor = true;
this.button12.Click += new System.EventHandler(this.button12_Click);
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel1.Controls.Add(this.button11);
this.panel1.Location = new System.Drawing.Point(17, 102);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(501, 135);
this.panel1.TabIndex = 9;
//
// panel2
//
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel2.Controls.Add(this.button10);
this.panel2.Location = new System.Drawing.Point(17, 256);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(501, 135);
this.panel2.TabIndex = 10;
//
// panel3
//
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel3.Controls.Add(this.button12);
this.panel3.Location = new System.Drawing.Point(17, 423);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(501, 135);
this.panel3.TabIndex = 11;
//
// pictureBox1
//
this.pictureBox1.Image = global::TicTacToe.Properties.Resources.TicTacToeMenuImage3;
this.pictureBox1.Location = new System.Drawing.Point(624, 31);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(848, 662);
this.pictureBox1.TabIndex = 12;
this.pictureBox1.TabStop = false;
//
// TicTacToe_Menu
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.ClientSize = new System.Drawing.Size(1368, 721);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Name = "TicTacToe_Menu";
this.Text = "TicTacToe_Menu";
this.panel1.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.panel3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button11;
private System.Windows.Forms.Button button10;
private System.Windows.Forms.Button button12;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.PictureBox pictureBox1;
}
}