-
Notifications
You must be signed in to change notification settings - Fork 18
/
NameForm.Designer.cs
131 lines (126 loc) · 5.38 KB
/
NameForm.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
namespace RacingDSX
{
partial class NameForm
{
/// <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()
{
flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
OkButton = new System.Windows.Forms.Button();
CancelButton = new System.Windows.Forms.Button();
flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
label1 = new System.Windows.Forms.Label();
NameTextBox = new System.Windows.Forms.TextBox();
flowLayoutPanel1.SuspendLayout();
flowLayoutPanel2.SuspendLayout();
SuspendLayout();
//
// flowLayoutPanel1
//
flowLayoutPanel1.Controls.Add(OkButton);
flowLayoutPanel1.Controls.Add(CancelButton);
flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
flowLayoutPanel1.Location = new System.Drawing.Point(0, 52);
flowLayoutPanel1.Name = "flowLayoutPanel1";
flowLayoutPanel1.Size = new System.Drawing.Size(800, 50);
flowLayoutPanel1.TabIndex = 0;
//
// OkButton
//
OkButton.DialogResult = System.Windows.Forms.DialogResult.OK;
OkButton.Location = new System.Drawing.Point(685, 3);
OkButton.Name = "OkButton";
OkButton.Size = new System.Drawing.Size(112, 34);
OkButton.TabIndex = 0;
OkButton.Text = "OK";
OkButton.UseVisualStyleBackColor = true;
OkButton.Click += OkButton_Click;
//
// CancelButton
//
CancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
CancelButton.Location = new System.Drawing.Point(567, 3);
CancelButton.Name = "CancelButton";
CancelButton.Size = new System.Drawing.Size(112, 34);
CancelButton.TabIndex = 1;
CancelButton.Text = "Cancel";
CancelButton.UseVisualStyleBackColor = true;
//
// flowLayoutPanel2
//
flowLayoutPanel2.Controls.Add(label1);
flowLayoutPanel2.Controls.Add(NameTextBox);
flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
flowLayoutPanel2.Location = new System.Drawing.Point(0, 0);
flowLayoutPanel2.Margin = new System.Windows.Forms.Padding(20);
flowLayoutPanel2.Name = "flowLayoutPanel2";
flowLayoutPanel2.Padding = new System.Windows.Forms.Padding(5);
flowLayoutPanel2.Size = new System.Drawing.Size(800, 52);
flowLayoutPanel2.TabIndex = 1;
//
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(8, 5);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(68, 25);
label1.TabIndex = 0;
label1.Text = "Name: ";
//
// NameTextBox
//
NameTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
NameTextBox.Location = new System.Drawing.Point(82, 8);
NameTextBox.Name = "NameTextBox";
NameTextBox.Size = new System.Drawing.Size(684, 31);
NameTextBox.TabIndex = 1;
//
// NameForm
//
AcceptButton = OkButton;
AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(800, 102);
Controls.Add(flowLayoutPanel2);
Controls.Add(flowLayoutPanel1);
FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
Name = "NameForm";
StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
Text = "Please Enter the Profile Name:";
TopMost = true;
Load += NameForm_Load;
flowLayoutPanel1.ResumeLayout(false);
flowLayoutPanel2.ResumeLayout(false);
flowLayoutPanel2.PerformLayout();
ResumeLayout(false);
}
#endregion
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Button OkButton;
private System.Windows.Forms.Button CancelButton;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox NameTextBox;
}
}