-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmLog.Designer.cs
110 lines (104 loc) · 4.16 KB
/
frmLog.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
namespace PhotonController
{
partial class frmLog
{
/// <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.txtResponse = new System.Windows.Forms.TextBox();
this.btnClear = new System.Windows.Forms.Button();
this.btnSaveLog = new System.Windows.Forms.Button();
this.btnSend = new System.Windows.Forms.Button();
this.txtCmd = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// txtResponse
//
this.txtResponse.Location = new System.Drawing.Point(12, 12);
this.txtResponse.Multiline = true;
this.txtResponse.Name = "txtResponse";
this.txtResponse.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtResponse.Size = new System.Drawing.Size(693, 256);
this.txtResponse.TabIndex = 7;
//
// btnClear
//
this.btnClear.Location = new System.Drawing.Point(633, 274);
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(75, 23);
this.btnClear.TabIndex = 8;
this.btnClear.Text = "Clear";
this.btnClear.UseVisualStyleBackColor = true;
//
// btnSaveLog
//
this.btnSaveLog.Location = new System.Drawing.Point(552, 274);
this.btnSaveLog.Name = "btnSaveLog";
this.btnSaveLog.Size = new System.Drawing.Size(75, 23);
this.btnSaveLog.TabIndex = 9;
this.btnSaveLog.Text = "Save";
this.btnSaveLog.UseVisualStyleBackColor = true;
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(12, 274);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(75, 23);
this.btnSend.TabIndex = 11;
this.btnSend.Text = "Send";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// txtCmd
//
this.txtCmd.Location = new System.Drawing.Point(93, 275);
this.txtCmd.Name = "txtCmd";
this.txtCmd.Size = new System.Drawing.Size(200, 20);
this.txtCmd.TabIndex = 10;
this.txtCmd.Text = "M27";
//
// frmLog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(720, 308);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.txtCmd);
this.Controls.Add(this.btnSaveLog);
this.Controls.Add(this.btnClear);
this.Controls.Add(this.txtResponse);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmLog";
this.Text = "Log";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public System.Windows.Forms.TextBox txtResponse;
private System.Windows.Forms.Button btnClear;
private System.Windows.Forms.Button btnSaveLog;
private System.Windows.Forms.Button btnSend;
public System.Windows.Forms.TextBox txtCmd;
}
}