forked from neil3d/UnityRemoteLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
342 lines (334 loc) · 18.3 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
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
namespace URLogWin
{
partial class MainForm
{
/// <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 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.toolStripTop = new System.Windows.Forms.ToolStrip();
this.checkBtnInfo = new System.Windows.Forms.ToolStripButton();
this.checkBtnWarning = new System.Windows.Forms.ToolStripButton();
this.checkBtnError = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.btnClear = new System.Windows.Forms.ToolStripButton();
this.btnSave = new System.Windows.Forms.ToolStripButton();
this.btnHelp = new System.Windows.Forms.ToolStripButton();
this.panelStart = new System.Windows.Forms.Panel();
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.lbStatus = new System.Windows.Forms.ToolStripStatusLabel();
this.labelTips = new System.Windows.Forms.Label();
this.pictureBoxLog = new System.Windows.Forms.PictureBox();
this.splitContainer = new System.Windows.Forms.SplitContainer();
this.listViewLog = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageListLog = new System.Windows.Forms.ImageList(this.components);
this.textBoxDetail = new System.Windows.Forms.TextBox();
this.eventTickTimer = new System.Windows.Forms.Timer(this.components);
this.toolStripTop.SuspendLayout();
this.panelStart.SuspendLayout();
this.statusStrip.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxLog)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
this.splitContainer.Panel1.SuspendLayout();
this.splitContainer.Panel2.SuspendLayout();
this.splitContainer.SuspendLayout();
this.SuspendLayout();
//
// toolStripTop
//
this.toolStripTop.CanOverflow = false;
this.toolStripTop.Font = new System.Drawing.Font("Courier New", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.toolStripTop.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.checkBtnInfo,
this.checkBtnWarning,
this.checkBtnError,
this.toolStripSeparator1,
this.btnClear,
this.btnSave,
this.btnHelp});
this.toolStripTop.Location = new System.Drawing.Point(0, 0);
this.toolStripTop.Name = "toolStripTop";
this.toolStripTop.Size = new System.Drawing.Size(927, 25);
this.toolStripTop.TabIndex = 0;
this.toolStripTop.Text = "Tool Bar";
//
// checkBtnInfo
//
this.checkBtnInfo.Checked = true;
this.checkBtnInfo.CheckOnClick = true;
this.checkBtnInfo.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBtnInfo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.checkBtnInfo.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBtnInfo.Image = ((System.Drawing.Image)(resources.GetObject("checkBtnInfo.Image")));
this.checkBtnInfo.ImageTransparentColor = System.Drawing.Color.Magenta;
this.checkBtnInfo.Name = "checkBtnInfo";
this.checkBtnInfo.Size = new System.Drawing.Size(23, 22);
this.checkBtnInfo.Text = "toolStripButton1";
this.checkBtnInfo.ToolTipText = "Show/Hide Info";
this.checkBtnInfo.CheckedChanged += new System.EventHandler(this.checkBtnInfo_CheckedChanged);
//
// checkBtnWarning
//
this.checkBtnWarning.Checked = true;
this.checkBtnWarning.CheckOnClick = true;
this.checkBtnWarning.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBtnWarning.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.checkBtnWarning.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBtnWarning.Image = global::URLogWin.Properties.Resources.icon_warning;
this.checkBtnWarning.ImageTransparentColor = System.Drawing.Color.Magenta;
this.checkBtnWarning.Name = "checkBtnWarning";
this.checkBtnWarning.Size = new System.Drawing.Size(23, 22);
this.checkBtnWarning.Text = "toolStripButton1";
this.checkBtnWarning.ToolTipText = "Show/Hide Warning";
this.checkBtnWarning.CheckedChanged += new System.EventHandler(this.checkBtnWarning_CheckedChanged);
//
// checkBtnError
//
this.checkBtnError.Checked = true;
this.checkBtnError.CheckOnClick = true;
this.checkBtnError.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBtnError.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.checkBtnError.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBtnError.Image = global::URLogWin.Properties.Resources.icon_error;
this.checkBtnError.ImageTransparentColor = System.Drawing.Color.Magenta;
this.checkBtnError.Name = "checkBtnError";
this.checkBtnError.Size = new System.Drawing.Size(23, 22);
this.checkBtnError.Text = "toolStripButton1";
this.checkBtnError.ToolTipText = "Show/Hide Error";
this.checkBtnError.CheckedChanged += new System.EventHandler(this.checkBtnError_CheckedChanged);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// btnClear
//
this.btnClear.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btnClear.Image = global::URLogWin.Properties.Resources.icon_clear;
this.btnClear.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(23, 22);
this.btnClear.Text = "Clear";
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
// btnSave
//
this.btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btnSave.Image = global::URLogWin.Properties.Resources.icon_save;
this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(23, 22);
this.btnSave.Text = "Save to File";
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnHelp
//
this.btnHelp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btnHelp.Image = global::URLogWin.Properties.Resources.icon_help;
this.btnHelp.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnHelp.Name = "btnHelp";
this.btnHelp.Size = new System.Drawing.Size(23, 22);
this.btnHelp.Text = "Help";
this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
//
// panelStart
//
this.panelStart.Controls.Add(this.statusStrip);
this.panelStart.Controls.Add(this.labelTips);
this.panelStart.Controls.Add(this.pictureBoxLog);
this.panelStart.Controls.Add(this.splitContainer);
this.panelStart.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelStart.Location = new System.Drawing.Point(0, 25);
this.panelStart.Name = "panelStart";
this.panelStart.Size = new System.Drawing.Size(927, 375);
this.panelStart.TabIndex = 1;
//
// statusStrip
//
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lbStatus});
this.statusStrip.Location = new System.Drawing.Point(0, 353);
this.statusStrip.Name = "statusStrip";
this.statusStrip.Size = new System.Drawing.Size(927, 22);
this.statusStrip.TabIndex = 2;
this.statusStrip.Text = "statusStrip1";
//
// lbStatus
//
this.lbStatus.Name = "lbStatus";
this.lbStatus.Size = new System.Drawing.Size(44, 17);
this.lbStatus.Text = "Ready";
//
// labelTips
//
this.labelTips.AutoSize = true;
this.labelTips.Font = new System.Drawing.Font("Courier New", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelTips.Location = new System.Drawing.Point(407, 172);
this.labelTips.Name = "labelTips";
this.labelTips.Size = new System.Drawing.Size(329, 21);
this.labelTips.TabIndex = 1;
this.labelTips.Text = "正在等待UnityRemoteLog连接...";
//
// pictureBoxLog
//
this.pictureBoxLog.Image = global::URLogWin.Properties.Resources.Logo;
this.pictureBoxLog.Location = new System.Drawing.Point(254, 121);
this.pictureBoxLog.Name = "pictureBoxLog";
this.pictureBoxLog.Size = new System.Drawing.Size(128, 128);
this.pictureBoxLog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBoxLog.TabIndex = 0;
this.pictureBoxLog.TabStop = false;
//
// splitContainer
//
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitContainer.Location = new System.Drawing.Point(0, 0);
this.splitContainer.Name = "splitContainer";
this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer.Panel1
//
this.splitContainer.Panel1.Controls.Add(this.listViewLog);
//
// splitContainer.Panel2
//
this.splitContainer.Panel2.Controls.Add(this.textBoxDetail);
this.splitContainer.Size = new System.Drawing.Size(927, 375);
this.splitContainer.SplitterDistance = 220;
this.splitContainer.TabIndex = 3;
//
// listViewLog
//
this.listViewLog.AutoArrange = false;
this.listViewLog.BackColor = System.Drawing.SystemColors.ActiveBorder;
this.listViewLog.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.listViewLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.listViewLog.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.listViewLog.FullRowSelect = true;
this.listViewLog.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.listViewLog.LabelWrap = false;
this.listViewLog.LargeImageList = this.imageListLog;
this.listViewLog.Location = new System.Drawing.Point(0, 0);
this.listViewLog.MultiSelect = false;
this.listViewLog.Name = "listViewLog";
this.listViewLog.Size = new System.Drawing.Size(927, 220);
this.listViewLog.SmallImageList = this.imageListLog;
this.listViewLog.TabIndex = 0;
this.listViewLog.UseCompatibleStateImageBehavior = false;
this.listViewLog.View = System.Windows.Forms.View.Details;
this.listViewLog.SelectedIndexChanged += new System.EventHandler(this.listViewLog_SelectedIndexChanged);
//
// columnHeader1
//
this.columnHeader1.Text = "Type";
this.columnHeader1.Width = 18;
//
// columnHeader2
//
this.columnHeader2.Text = "Log";
this.columnHeader2.Width = 818;
//
// imageListLog
//
this.imageListLog.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListLog.ImageStream")));
this.imageListLog.TransparentColor = System.Drawing.Color.Transparent;
this.imageListLog.Images.SetKeyName(0, "icon_info.png");
this.imageListLog.Images.SetKeyName(1, "icon_warning.png");
this.imageListLog.Images.SetKeyName(2, "icon_error.png");
//
// textBoxDetail
//
this.textBoxDetail.BackColor = System.Drawing.SystemColors.ControlDark;
this.textBoxDetail.Cursor = System.Windows.Forms.Cursors.Default;
this.textBoxDetail.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDetail.Location = new System.Drawing.Point(0, 0);
this.textBoxDetail.Multiline = true;
this.textBoxDetail.Name = "textBoxDetail";
this.textBoxDetail.ReadOnly = true;
this.textBoxDetail.Size = new System.Drawing.Size(927, 151);
this.textBoxDetail.TabIndex = 0;
//
// eventTickTimer
//
this.eventTickTimer.Enabled = true;
this.eventTickTimer.Tick += new System.EventHandler(this.eventTickTimer_Tick);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(927, 400);
this.Controls.Add(this.panelStart);
this.Controls.Add(this.toolStripTop);
this.Font = new System.Drawing.Font("Courier New", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Unity Remote Log Window";
this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
this.toolStripTop.ResumeLayout(false);
this.toolStripTop.PerformLayout();
this.panelStart.ResumeLayout(false);
this.panelStart.PerformLayout();
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxLog)).EndInit();
this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel2.ResumeLayout(false);
this.splitContainer.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
this.splitContainer.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStripTop;
private System.Windows.Forms.ToolStripButton checkBtnInfo;
private System.Windows.Forms.ToolStripButton checkBtnWarning;
private System.Windows.Forms.ToolStripButton checkBtnError;
private System.Windows.Forms.Panel panelStart;
private System.Windows.Forms.PictureBox pictureBoxLog;
private System.Windows.Forms.Label labelTips;
private System.Windows.Forms.StatusStrip statusStrip;
private System.Windows.Forms.ToolStripStatusLabel lbStatus;
private System.Windows.Forms.SplitContainer splitContainer;
private System.Windows.Forms.ListView listViewLog;
private System.Windows.Forms.TextBox textBoxDetail;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton btnHelp;
private System.Windows.Forms.Timer eventTickTimer;
private System.Windows.Forms.ImageList imageListLog;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ToolStripButton btnClear;
private System.Windows.Forms.ToolStripButton btnSave;
}
}