-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
193 lines (187 loc) · 9.81 KB
/
MainForm.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
namespace OHK
{
partial class MainForm
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.connectionStatusPicture = new System.Windows.Forms.PictureBox();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.connectButton = new System.Windows.Forms.Button();
this.reconnectCheckBox = new System.Windows.Forms.CheckBox();
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
this.debugLogMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.UpdateMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.configureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.connectionStatusPicture)).BeginInit();
this.statusStrip.SuspendLayout();
this.SuspendLayout();
//
// connectionStatusPicture
//
this.connectionStatusPicture.Location = new System.Drawing.Point(114, 0);
this.connectionStatusPicture.MaximumSize = new System.Drawing.Size(50, 50);
this.connectionStatusPicture.Name = "connectionStatusPicture";
this.connectionStatusPicture.Size = new System.Drawing.Size(50, 50);
this.connectionStatusPicture.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.connectionStatusPicture.TabIndex = 4;
this.connectionStatusPicture.TabStop = false;
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "connect.png");
this.imageList1.Images.SetKeyName(1, "disconnect.png");
this.imageList1.Images.SetKeyName(2, "bangburger.png");
this.imageList1.Images.SetKeyName(3, "bang.png");
//
// connectButton
//
this.connectButton.Location = new System.Drawing.Point(0, 0);
this.connectButton.Name = "connectButton";
this.connectButton.Size = new System.Drawing.Size(108, 23);
this.connectButton.TabIndex = 5;
this.connectButton.Text = "Connect";
this.connectButton.UseVisualStyleBackColor = true;
this.connectButton.Click += new System.EventHandler(this.ConnectButton_Click);
//
// reconnectCheckBox
//
this.reconnectCheckBox.AutoSize = true;
this.reconnectCheckBox.Location = new System.Drawing.Point(4, 29);
this.reconnectCheckBox.Name = "reconnectCheckBox";
this.reconnectCheckBox.Size = new System.Drawing.Size(104, 17);
this.reconnectCheckBox.TabIndex = 6;
this.reconnectCheckBox.Text = "Auto-Reconnect";
this.reconnectCheckBox.UseVisualStyleBackColor = true;
//
// statusStrip
//
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripDropDownButton1,
this.statusLabel});
this.statusStrip.Location = new System.Drawing.Point(0, 52);
this.statusStrip.Name = "statusStrip";
this.statusStrip.Size = new System.Drawing.Size(163, 22);
this.statusStrip.TabIndex = 9;
this.statusStrip.Text = "statusStrip1";
//
// toolStripDropDownButton1
//
this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.debugLogMenuItem,
this.configureToolStripMenuItem,
this.UpdateMenuItem,
this.toolStripSeparator1,
this.exitToolStripMenuItem});
this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
this.toolStripDropDownButton1.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.toolStripDropDownButton1.Size = new System.Drawing.Size(29, 20);
this.toolStripDropDownButton1.Text = "toolStripDropDownButton1";
//
// debugLogMenuItem
//
this.debugLogMenuItem.Name = "debugLogMenuItem";
this.debugLogMenuItem.Size = new System.Drawing.Size(180, 22);
this.debugLogMenuItem.Text = "View Debug Log...";
this.debugLogMenuItem.Click += new System.EventHandler(this.OpenDebugLogToolStripMenuItem_Click);
//
// UpdateMenuItem
//
this.UpdateMenuItem.Name = "UpdateMenuItem";
this.UpdateMenuItem.Size = new System.Drawing.Size(180, 22);
this.UpdateMenuItem.Text = "Check for updates";
this.UpdateMenuItem.Click += new System.EventHandler(this.UpdateMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// statusLabel
//
this.statusLabel.BackColor = System.Drawing.Color.Transparent;
this.statusLabel.Name = "statusLabel";
this.statusLabel.Size = new System.Drawing.Size(39, 17);
this.statusLabel.Text = "Status";
//
// configureToolStripMenuItem
//
this.configureToolStripMenuItem.Name = "configureToolStripMenuItem";
this.configureToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.configureToolStripMenuItem.Text = "Configure...";
this.configureToolStripMenuItem.Click += new System.EventHandler(this.configureToolStripMenuItem_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(163, 74);
this.ControlBox = false;
this.Controls.Add(this.statusStrip);
this.Controls.Add(this.reconnectCheckBox);
this.Controls.Add(this.connectButton);
this.Controls.Add(this.connectionStatusPicture);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "OHK";
((System.ComponentModel.ISupportInitialize)(this.connectionStatusPicture)).EndInit();
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox connectionStatusPicture;
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.Button connectButton;
private System.Windows.Forms.CheckBox reconnectCheckBox;
private System.Windows.Forms.StatusStrip statusStrip;
private System.Windows.Forms.ToolStripStatusLabel statusLabel;
private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1;
private System.Windows.Forms.ToolStripMenuItem debugLogMenuItem;
private System.Windows.Forms.ToolStripMenuItem UpdateMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem configureToolStripMenuItem;
}
}