-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.cs
184 lines (177 loc) ยท 9.44 KB
/
Form1.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
๏ปฟnamespace tarkov_server_finder
{
partial class Form1
{
/// <summary>
/// ํ์ ๋์์ด๋ ๋ณ์์
๋๋ค.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// ์ฌ์ฉ ์ค์ธ ๋ชจ๋ ๋ฆฌ์์ค๋ฅผ ์ ๋ฆฌํฉ๋๋ค.
/// </summary>
/// <param name="disposing">๊ด๋ฆฌ๋๋ ๋ฆฌ์์ค๋ฅผ ์ญ์ ํด์ผ ํ๋ฉด true์ด๊ณ , ๊ทธ๋ ์ง ์์ผ๋ฉด false์
๋๋ค.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form ๋์์ด๋์์ ์์ฑํ ์ฝ๋
/// <summary>
/// ๋์์ด๋ ์ง์์ ํ์ํ ๋ฉ์๋์
๋๋ค.
/// ์ด ๋ฉ์๋์ ๋ด์ฉ์ ์ฝ๋ ํธ์ง๊ธฐ๋ก ์์ ํ์ง ๋ง์ธ์.
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.labelCountryName = new System.Windows.Forms.Label();
this.labelCityName = new System.Windows.Forms.Label();
this.labelRegionName = new System.Windows.Forms.Label();
this.labelIpAddress = new System.Windows.Forms.Label();
this.textBoxFolderPath = new System.Windows.Forms.TextBox();
this.buttonChangePath = new System.Windows.Forms.Button();
this.linkLabelHowToUse = new System.Windows.Forms.LinkLabel();
this.linkLabelBugReport = new System.Windows.Forms.LinkLabel();
this.SuspendLayout();
//
// button1
//
this.button1.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.button1.AutoSize = true;
this.button1.Font = new System.Drawing.Font("๊ตด๋ฆผ", 20F, System.Drawing.FontStyle.Bold);
this.button1.Location = new System.Drawing.Point(105, 86);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(266, 51);
this.button1.TabIndex = 0;
this.button1.Text = "๋ธ๊ฐ";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// labelCountryName
//
this.labelCountryName.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.labelCountryName.Font = new System.Drawing.Font("๊ตด๋ฆผ", 16F);
this.labelCountryName.Location = new System.Drawing.Point(105, 197);
this.labelCountryName.Name = "labelCountryName";
this.labelCountryName.Size = new System.Drawing.Size(266, 22);
this.labelCountryName.TabIndex = 1;
this.labelCountryName.Text = "๊ตญ๊ฐ: None";
this.labelCountryName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// labelCityName
//
this.labelCityName.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.labelCityName.Font = new System.Drawing.Font("๊ตด๋ฆผ", 16F);
this.labelCityName.Location = new System.Drawing.Point(105, 279);
this.labelCityName.Name = "labelCityName";
this.labelCityName.Size = new System.Drawing.Size(266, 22);
this.labelCityName.TabIndex = 2;
this.labelCityName.Text = "๋์: None";
this.labelCityName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// labelRegionName
//
this.labelRegionName.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.labelRegionName.Font = new System.Drawing.Font("๊ตด๋ฆผ", 16F);
this.labelRegionName.Location = new System.Drawing.Point(105, 238);
this.labelRegionName.Name = "labelRegionName";
this.labelRegionName.Size = new System.Drawing.Size(266, 22);
this.labelRegionName.TabIndex = 3;
this.labelRegionName.Text = "์ง์ญ: None";
this.labelRegionName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// labelIpAddress
//
this.labelIpAddress.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.labelIpAddress.Font = new System.Drawing.Font("๊ตด๋ฆผ", 16F);
this.labelIpAddress.Location = new System.Drawing.Point(105, 156);
this.labelIpAddress.Name = "labelIpAddress";
this.labelIpAddress.Size = new System.Drawing.Size(266, 22);
this.labelIpAddress.TabIndex = 4;
this.labelIpAddress.Text = "IP ์ฃผ์ : None";
this.labelIpAddress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// textBoxFolderPath
//
this.textBoxFolderPath.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.textBoxFolderPath.Font = new System.Drawing.Font("๊ตด๋ฆผ", 12F);
this.textBoxFolderPath.Location = new System.Drawing.Point(15, 41);
this.textBoxFolderPath.Name = "textBoxFolderPath";
this.textBoxFolderPath.ReadOnly = true;
this.textBoxFolderPath.Size = new System.Drawing.Size(376, 26);
this.textBoxFolderPath.TabIndex = 5;
//
// buttonChangePath
//
this.buttonChangePath.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.buttonChangePath.Font = new System.Drawing.Font("๊ตด๋ฆผ", 14F);
this.buttonChangePath.Location = new System.Drawing.Point(397, 41);
this.buttonChangePath.Name = "buttonChangePath";
this.buttonChangePath.Size = new System.Drawing.Size(75, 26);
this.buttonChangePath.TabIndex = 6;
this.buttonChangePath.Text = "๋ณ๊ฒฝ";
this.buttonChangePath.UseVisualStyleBackColor = true;
this.buttonChangePath.Click += new System.EventHandler(this.buttonApply_Click);
//
// linkLabelHowToUse
//
this.linkLabelHowToUse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.linkLabelHowToUse.AutoSize = true;
this.linkLabelHowToUse.Font = new System.Drawing.Font("๊ตด๋ฆผ", 12F);
this.linkLabelHowToUse.Location = new System.Drawing.Point(12, 336);
this.linkLabelHowToUse.Name = "linkLabelHowToUse";
this.linkLabelHowToUse.Size = new System.Drawing.Size(76, 16);
this.linkLabelHowToUse.TabIndex = 7;
this.linkLabelHowToUse.TabStop = true;
this.linkLabelHowToUse.Text = "์ฌ์ฉ ๋ฐฉ๋ฒ";
this.linkLabelHowToUse.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.linkLabelHowToUse.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// linkLabelBugReport
//
this.linkLabelBugReport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.linkLabelBugReport.AutoSize = true;
this.linkLabelBugReport.Font = new System.Drawing.Font("๊ตด๋ฆผ", 12F);
this.linkLabelBugReport.Location = new System.Drawing.Point(358, 336);
this.linkLabelBugReport.Name = "linkLabelBugReport";
this.linkLabelBugReport.Size = new System.Drawing.Size(114, 16);
this.linkLabelBugReport.TabIndex = 8;
this.linkLabelBugReport.TabStop = true;
this.linkLabelBugReport.Text = "๋ฒ๊ทธ/์ค๋ฅ ์ ๋ณด";
this.linkLabelBugReport.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.linkLabelBugReport.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelBugReport_LinkClicked);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(484, 361);
this.Controls.Add(this.linkLabelBugReport);
this.Controls.Add(this.linkLabelHowToUse);
this.Controls.Add(this.buttonChangePath);
this.Controls.Add(this.textBoxFolderPath);
this.Controls.Add(this.labelCityName);
this.Controls.Add(this.labelIpAddress);
this.Controls.Add(this.labelRegionName);
this.Controls.Add(this.labelCountryName);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Tarkov Server Finder (v1.1)";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label labelCountryName;
private System.Windows.Forms.Label labelCityName;
private System.Windows.Forms.Label labelRegionName;
private System.Windows.Forms.Label labelIpAddress;
private System.Windows.Forms.TextBox textBoxFolderPath;
private System.Windows.Forms.Button buttonChangePath;
private System.Windows.Forms.LinkLabel linkLabelHowToUse;
private System.Windows.Forms.LinkLabel linkLabelBugReport;
}
}