-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
379 lines (373 loc) · 20.4 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
namespace UWMConfigVersionSelector
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.button2 = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.cmbAMVersion = new System.Windows.Forms.ComboBox();
this.lblOpenWithVersion = new System.Windows.Forms.Label();
this.btnOpenAamp = new System.Windows.Forms.Button();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.lblHeader = new System.Windows.Forms.Label();
this.cmbEMVersions = new System.Windows.Forms.ComboBox();
this.btnOpenAemp = new System.Windows.Forms.Button();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ToolStripAbout = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripUpdate = new System.Windows.Forms.ToolStripMenuItem();
this.testToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.grpOpenWithConsole = new System.Windows.Forms.GroupBox();
this.btnUnloadConfig = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.statusStrip1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.grpOpenWithConsole.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// richTextBox1
//
this.richTextBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.richTextBox1.Location = new System.Drawing.Point(6, 19);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(327, 96);
this.richTextBox1.TabIndex = 1;
this.richTextBox1.Text = "";
//
// button2
//
this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button2.Location = new System.Drawing.Point(359, 270);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(147, 23);
this.button2.TabIndex = 2;
this.button2.Text = "Load Configuration";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// cmbAMVersion
//
this.cmbAMVersion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbAMVersion.FormattingEnabled = true;
this.cmbAMVersion.Location = new System.Drawing.Point(10, 19);
this.cmbAMVersion.Name = "cmbAMVersion";
this.cmbAMVersion.Size = new System.Drawing.Size(147, 21);
this.cmbAMVersion.TabIndex = 4;
//
// lblOpenWithVersion
//
this.lblOpenWithVersion.AutoSize = true;
this.lblOpenWithVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblOpenWithVersion.Location = new System.Drawing.Point(356, 165);
this.lblOpenWithVersion.Name = "lblOpenWithVersion";
this.lblOpenWithVersion.Size = new System.Drawing.Size(133, 16);
this.lblOpenWithVersion.TabIndex = 5;
this.lblOpenWithVersion.Text = "Open with version:";
this.lblOpenWithVersion.Click += new System.EventHandler(this.lblOpenWithVersion_Click);
//
// btnOpenAamp
//
this.btnOpenAamp.Location = new System.Drawing.Point(10, 46);
this.btnOpenAamp.Name = "btnOpenAamp";
this.btnOpenAamp.Size = new System.Drawing.Size(147, 23);
this.btnOpenAamp.TabIndex = 6;
this.btnOpenAamp.Text = "Open AM Console";
this.btnOpenAamp.UseVisualStyleBackColor = true;
this.btnOpenAamp.Click += new System.EventHandler(this.btnOpenAamp_Click);
//
// statusStrip1
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel1});
this.statusStrip1.Location = new System.Drawing.Point(0, 304);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(696, 22);
this.statusStrip1.TabIndex = 7;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17);
//
// lblHeader
//
this.lblHeader.AutoSize = true;
this.lblHeader.Font = new System.Drawing.Font("Arial", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblHeader.Location = new System.Drawing.Point(31, 101);
this.lblHeader.Name = "lblHeader";
this.lblHeader.Size = new System.Drawing.Size(385, 33);
this.lblHeader.TabIndex = 10;
this.lblHeader.Text = "UWM ConfigVersionSelector";
//
// cmbEMVersions
//
this.cmbEMVersions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbEMVersions.FormattingEnabled = true;
this.cmbEMVersions.Location = new System.Drawing.Point(170, 19);
this.cmbEMVersions.Name = "cmbEMVersions";
this.cmbEMVersions.Size = new System.Drawing.Size(147, 21);
this.cmbEMVersions.TabIndex = 13;
this.cmbEMVersions.DropDown += new System.EventHandler(this.cmbEMVersions_DropDown);
this.cmbEMVersions.MouseEnter += new System.EventHandler(this.cmbEMVersions_MouseEnter);
this.cmbEMVersions.MouseHover += new System.EventHandler(this.cmbEMVersions_MouseHover);
//
// btnOpenAemp
//
this.btnOpenAemp.Location = new System.Drawing.Point(170, 46);
this.btnOpenAemp.Name = "btnOpenAemp";
this.btnOpenAemp.Size = new System.Drawing.Size(147, 23);
this.btnOpenAemp.TabIndex = 14;
this.btnOpenAemp.Text = "Open EM Console";
this.btnOpenAemp.UseVisualStyleBackColor = true;
this.btnOpenAemp.Click += new System.EventHandler(this.btnOpenAemp_Click);
this.btnOpenAemp.MouseHover += new System.EventHandler(this.btnOpenAemp_MouseHover);
//
// notifyIcon1
//
this.notifyIcon1.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "UWM ConfigVersionSelector";
this.notifyIcon1.Visible = true;
//
// contextMenuStrip1
//
this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ToolStripAbout,
this.toolStripUpdate,
this.testToolStripMenuItem1});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(188, 118);
this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
//
// ToolStripAbout
//
this.ToolStripAbout.Image = global::UWMConfigVersionSelector.Properties.Resources._330401_about_details_help_info_information_icon;
this.ToolStripAbout.Name = "ToolStripAbout";
this.ToolStripAbout.Size = new System.Drawing.Size(187, 38);
this.ToolStripAbout.Text = "About";
this.ToolStripAbout.Click += new System.EventHandler(this.ToolStripAbout_Click);
//
// toolStripUpdate
//
this.toolStripUpdate.Image = ((System.Drawing.Image)(resources.GetObject("toolStripUpdate.Image")));
this.toolStripUpdate.Name = "toolStripUpdate";
this.toolStripUpdate.Size = new System.Drawing.Size(187, 38);
this.toolStripUpdate.Text = "Check for Updates";
this.toolStripUpdate.Click += new System.EventHandler(this.toolStripUpdate_Click);
//
// testToolStripMenuItem1
//
this.testToolStripMenuItem1.Image = global::UWMConfigVersionSelector.Properties.Resources._9055432_bxs_exit_icon;
this.testToolStripMenuItem1.Name = "testToolStripMenuItem1";
this.testToolStripMenuItem1.Size = new System.Drawing.Size(187, 38);
this.testToolStripMenuItem1.Text = "Exit";
this.testToolStripMenuItem1.Click += new System.EventHandler(this.testToolStripMenuItem1_Click);
//
// grpOpenWithConsole
//
this.grpOpenWithConsole.Controls.Add(this.cmbAMVersion);
this.grpOpenWithConsole.Controls.Add(this.cmbEMVersions);
this.grpOpenWithConsole.Controls.Add(this.btnOpenAemp);
this.grpOpenWithConsole.Controls.Add(this.btnOpenAamp);
this.grpOpenWithConsole.Location = new System.Drawing.Point(349, 165);
this.grpOpenWithConsole.Name = "grpOpenWithConsole";
this.grpOpenWithConsole.Size = new System.Drawing.Size(335, 83);
this.grpOpenWithConsole.TabIndex = 16;
this.grpOpenWithConsole.TabStop = false;
this.grpOpenWithConsole.Text = "Open with console";
//
// btnUnloadConfig
//
this.btnUnloadConfig.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnUnloadConfig.Location = new System.Drawing.Point(519, 270);
this.btnUnloadConfig.Name = "btnUnloadConfig";
this.btnUnloadConfig.Size = new System.Drawing.Size(147, 23);
this.btnUnloadConfig.TabIndex = 15;
this.btnUnloadConfig.Text = "Unload Configuration";
this.btnUnloadConfig.UseVisualStyleBackColor = true;
this.btnUnloadConfig.Click += new System.EventHandler(this.btnUnloadConfig_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.richTextBox1);
this.groupBox1.Location = new System.Drawing.Point(6, 165);
this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
this.groupBox1.Size = new System.Drawing.Size(338, 128);
this.groupBox1.TabIndex = 17;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Properties";
//
// pictureBox3
//
this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
this.pictureBox3.Location = new System.Drawing.Point(163, 30);
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.Size = new System.Drawing.Size(121, 63);
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox3.TabIndex = 12;
this.pictureBox3.TabStop = false;
//
// pictureBox1
//
this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
this.pictureBox1.Image = global::UWMConfigVersionSelector.Properties.Resources.SVA_Logo;
this.pictureBox1.Location = new System.Drawing.Point(521, 31);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(145, 80);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 8;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// menuStrip1
//
this.menuStrip1.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.optionsToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(696, 24);
this.menuStrip1.TabIndex = 18;
this.menuStrip1.Text = "menuStrip1";
//
// optionsToolStripMenuItem
//
this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem1,
this.toolStripMenuItem2});
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.optionsToolStripMenuItem.Text = "Options";
this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(172, 22);
this.toolStripMenuItem1.Text = "Open EM Releases";
this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(172, 22);
this.toolStripMenuItem2.Text = "Open AM Releases";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// Form1
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ButtonShadow;
this.ClientSize = new System.Drawing.Size(696, 326);
this.Controls.Add(this.btnUnloadConfig);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.grpOpenWithConsole);
this.Controls.Add(this.pictureBox3);
this.Controls.Add(this.button2);
this.Controls.Add(this.lblHeader);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStrip1);
this.Controls.Add(this.lblOpenWithVersion);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.MaximizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "UWM ConfigVersionSelector Version 2.8";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.Form1_DragDrop);
this.DragOver += new System.Windows.Forms.DragEventHandler(this.Form1_DragOver);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.contextMenuStrip1.ResumeLayout(false);
this.grpOpenWithConsole.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.ComboBox cmbAMVersion;
private System.Windows.Forms.Label lblOpenWithVersion;
private System.Windows.Forms.Button btnOpenAamp;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label lblHeader;
private System.Windows.Forms.PictureBox pictureBox3;
private System.Windows.Forms.ComboBox cmbEMVersions;
private System.Windows.Forms.Button btnOpenAemp;
private System.Windows.Forms.NotifyIcon notifyIcon1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem ToolStripAbout;
private System.Windows.Forms.ToolStripMenuItem testToolStripMenuItem1;
private System.Windows.Forms.GroupBox grpOpenWithConsole;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnUnloadConfig;
private System.Windows.Forms.ToolStripMenuItem toolStripUpdate;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
private System.Windows.Forms.ToolTip toolTip1;
}
}