-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogForm.Designer.cs
More file actions
61 lines (56 loc) · 1.77 KB
/
Copy pathLogForm.Designer.cs
File metadata and controls
61 lines (56 loc) · 1.77 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
namespace HTTPInterceptor
{
partial class LogForm
{
/// <summary>
/// 設計工具所需的變數
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清除使用中的資源
/// </summary>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer 產生的程式碼
private void InitializeComponent()
{
txtLog = new TextBox();
SuspendLayout();
//
// txtLog
//
txtLog.BackColor = SystemColors.Desktop;
txtLog.Dock = DockStyle.Fill;
txtLog.ForeColor = SystemColors.ControlLightLight;
txtLog.Location = new Point(0, 0);
txtLog.Multiline = true;
txtLog.Name = "txtLog";
txtLog.ReadOnly = true;
txtLog.ScrollBars = ScrollBars.Vertical;
txtLog.Size = new Size(500, 300);
txtLog.TabIndex = 0;
txtLog.TextChanged += txtLog_TextChanged;
//
// LogForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = SystemColors.ButtonShadow;
ClientSize = new Size(500, 300);
Controls.Add(txtLog);
ForeColor = SystemColors.ControlLightLight;
Name = "LogForm";
Text = "Log";
ResumeLayout(false);
PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtLog;
}
}