-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimulatorWindow.Designer.cs
More file actions
95 lines (90 loc) · 4.21 KB
/
SimulatorWindow.Designer.cs
File metadata and controls
95 lines (90 loc) · 4.21 KB
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
namespace Simulator.Plugin
{
partial class SimulatorWindow
{
/// <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.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.comboBoxDisplay = new System.Windows.Forms.ComboBox();
this.labelDisplay = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// comboBoxDisplay
//
this.comboBoxDisplay.BackColor = System.Drawing.SystemColors.Window;
this.comboBoxDisplay.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxDisplay.Font = new System.Drawing.Font("Terminus (TTF)", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.comboBoxDisplay.FormattingEnabled = true;
this.comboBoxDisplay.Items.AddRange(new object[] {
"",
"Vatpac SweatBox-1",
"Vatpac SweatBox-2",
"Vatmex SweatBox"});
this.comboBoxDisplay.Location = new System.Drawing.Point(16, 31);
this.comboBoxDisplay.Margin = new System.Windows.Forms.Padding(4);
this.comboBoxDisplay.Name = "comboBoxDisplay";
this.comboBoxDisplay.Size = new System.Drawing.Size(255, 25);
this.comboBoxDisplay.TabIndex = 1;
this.comboBoxDisplay.SelectedIndexChanged += new System.EventHandler(this.ComboBoxDisplay_SelectedIndexChanged);
//
// labelDisplay
//
this.labelDisplay.AutoSize = true;
this.labelDisplay.Font = new System.Drawing.Font("Terminus (TTF)", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.labelDisplay.Location = new System.Drawing.Point(16, 12);
this.labelDisplay.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.labelDisplay.Name = "labelDisplay";
this.labelDisplay.Size = new System.Drawing.Size(56, 17);
this.labelDisplay.TabIndex = 2;
this.labelDisplay.Text = "Server";
//
// SimulatorWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoValidate = System.Windows.Forms.AutoValidate.Disable;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(284, 72);
this.Controls.Add(this.labelDisplay);
this.Controls.Add(this.comboBoxDisplay);
this.ForeColor = System.Drawing.SystemColors.InfoText;
this.HasMinimizeButton = false;
this.Margin = new System.Windows.Forms.Padding(4);
this.MaximumSize = new System.Drawing.Size(288, 100);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(288, 100);
this.Name = "SimulatorWindow";
this.Resizeable = false;
this.Text = "Simulator";
this.TopMost = true;
this.Load += new System.EventHandler(this.SimulatorWindow_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.ComponentModel.BackgroundWorker backgroundWorker1;
private System.Windows.Forms.ComboBox comboBoxDisplay;
private System.Windows.Forms.Label labelDisplay;
}
}