-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModeSelectionForm.Designer.cs
121 lines (113 loc) · 4.86 KB
/
ModeSelectionForm.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
namespace BooleDeustoTwo
{
partial class ModeSelectionForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ModeSelectionForm));
this.ccButton = new System.Windows.Forms.Button();
this.fsmButton = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.termsButton = new System.Windows.Forms.Button();
this.aboutButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// ccButton
//
resources.ApplyResources(this.ccButton, "ccButton");
this.ccButton.Name = "ccButton";
this.ccButton.UseVisualStyleBackColor = true;
this.ccButton.Click += new System.EventHandler(this.ccButton_Click);
//
// fsmButton
//
resources.ApplyResources(this.fsmButton, "fsmButton");
this.fsmButton.Name = "fsmButton";
this.fsmButton.UseVisualStyleBackColor = true;
//
// panel1
//
this.panel1.Controls.Add(this.exitButton);
this.panel1.Controls.Add(this.aboutButton);
this.panel1.Controls.Add(this.termsButton);
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// termsButton
//
resources.ApplyResources(this.termsButton, "termsButton");
this.termsButton.Name = "termsButton";
this.termsButton.UseVisualStyleBackColor = true;
//
// aboutButton
//
resources.ApplyResources(this.aboutButton, "aboutButton");
this.aboutButton.Name = "aboutButton";
this.aboutButton.UseVisualStyleBackColor = true;
this.aboutButton.Click += new System.EventHandler(this.aboutButton_Click);
//
// exitButton
//
resources.ApplyResources(this.exitButton, "exitButton");
this.exitButton.Name = "exitButton";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
//
// pictureBox1
//
resources.ApplyResources(this.pictureBox1, "pictureBox1");
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.TabStop = false;
//
// ModeSelectionForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.Controls.Add(this.panel1);
this.Controls.Add(this.fsmButton);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.ccButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "ModeSelectionForm";
this.Load += new System.EventHandler(this.ModeSelectionForm_Load);
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button ccButton;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button fsmButton;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button exitButton;
private System.Windows.Forms.Button aboutButton;
private System.Windows.Forms.Button termsButton;
}
}