1 |
namespace RomCheater.Logging |
2 |
{ |
3 |
partial class LogWriter |
4 |
{ |
5 |
/// <summary> |
6 |
/// Required designer variable. |
7 |
/// </summary> |
8 |
private System.ComponentModel.IContainer components = null; |
9 |
|
10 |
/// <summary> |
11 |
/// Clean up any resources being used. |
12 |
/// </summary> |
13 |
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
14 |
protected override void Dispose(bool disposing) |
15 |
{ |
16 |
if (disposing && (components != null)) |
17 |
{ |
18 |
components.Dispose(); |
19 |
} |
20 |
base.Dispose(disposing); |
21 |
} |
22 |
|
23 |
#region Component Designer generated code |
24 |
|
25 |
/// <summary> |
26 |
/// Required method for Designer support - do not modify |
27 |
/// the contents of this method with the code editor. |
28 |
/// </summary> |
29 |
private void InitializeComponent() |
30 |
{ |
31 |
this.components = new System.ComponentModel.Container(); |
32 |
this.txtLog = new System.Windows.Forms.RichTextBox(); |
33 |
this.pnl_top = new System.Windows.Forms.Panel(); |
34 |
this.pnl_top_flow = new System.Windows.Forms.FlowLayoutPanel(); |
35 |
this.btnClearLog = new System.Windows.Forms.Button(); |
36 |
this.btnCopyLogToClipboard = new System.Windows.Forms.Button(); |
37 |
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); |
38 |
this.pnl_top.SuspendLayout(); |
39 |
this.pnl_top_flow.SuspendLayout(); |
40 |
this.SuspendLayout(); |
41 |
// |
42 |
// txtLog |
43 |
// |
44 |
this.txtLog.BackColor = System.Drawing.SystemColors.ControlDark; |
45 |
this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill; |
46 |
this.txtLog.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
47 |
this.txtLog.Location = new System.Drawing.Point(0, 30); |
48 |
this.txtLog.Margin = new System.Windows.Forms.Padding(0); |
49 |
this.txtLog.Name = "txtLog"; |
50 |
this.txtLog.ReadOnly = true; |
51 |
this.txtLog.Size = new System.Drawing.Size(280, 240); |
52 |
this.txtLog.TabIndex = 0; |
53 |
this.txtLog.Text = ""; |
54 |
// |
55 |
// pnl_top |
56 |
// |
57 |
this.pnl_top.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
58 |
this.pnl_top.Controls.Add(this.pnl_top_flow); |
59 |
this.pnl_top.Dock = System.Windows.Forms.DockStyle.Top; |
60 |
this.pnl_top.Location = new System.Drawing.Point(0, 0); |
61 |
this.pnl_top.Margin = new System.Windows.Forms.Padding(0); |
62 |
this.pnl_top.Name = "pnl_top"; |
63 |
this.pnl_top.Size = new System.Drawing.Size(280, 30); |
64 |
this.pnl_top.TabIndex = 1; |
65 |
// |
66 |
// pnl_top_flow |
67 |
// |
68 |
this.pnl_top_flow.AutoScroll = true; |
69 |
this.pnl_top_flow.Controls.Add(this.btnClearLog); |
70 |
this.pnl_top_flow.Controls.Add(this.btnCopyLogToClipboard); |
71 |
this.pnl_top_flow.Dock = System.Windows.Forms.DockStyle.Fill; |
72 |
this.pnl_top_flow.Location = new System.Drawing.Point(0, 0); |
73 |
this.pnl_top_flow.Margin = new System.Windows.Forms.Padding(0); |
74 |
this.pnl_top_flow.Name = "pnl_top_flow"; |
75 |
this.pnl_top_flow.Size = new System.Drawing.Size(276, 26); |
76 |
this.pnl_top_flow.TabIndex = 0; |
77 |
// |
78 |
// btnClearLog |
79 |
// |
80 |
this.btnClearLog.AutoSize = true; |
81 |
this.btnClearLog.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
82 |
this.btnClearLog.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
83 |
this.btnClearLog.Location = new System.Drawing.Point(0, 0); |
84 |
this.btnClearLog.Margin = new System.Windows.Forms.Padding(0); |
85 |
this.btnClearLog.Name = "btnClearLog"; |
86 |
this.btnClearLog.Size = new System.Drawing.Size(90, 26); |
87 |
this.btnClearLog.TabIndex = 0; |
88 |
this.btnClearLog.Text = "Clear Log"; |
89 |
this.btnClearLog.UseVisualStyleBackColor = true; |
90 |
this.btnClearLog.Click += new System.EventHandler(this.btnClearLog_Click); |
91 |
// |
92 |
// btnCopyLogToClipboard |
93 |
// |
94 |
this.btnCopyLogToClipboard.AutoSize = true; |
95 |
this.btnCopyLogToClipboard.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
96 |
this.btnCopyLogToClipboard.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
97 |
this.btnCopyLogToClipboard.Location = new System.Drawing.Point(90, 0); |
98 |
this.btnCopyLogToClipboard.Margin = new System.Windows.Forms.Padding(0); |
99 |
this.btnCopyLogToClipboard.Name = "btnCopyLogToClipboard"; |
100 |
this.btnCopyLogToClipboard.Size = new System.Drawing.Size(186, 26); |
101 |
this.btnCopyLogToClipboard.TabIndex = 1; |
102 |
this.btnCopyLogToClipboard.Text = "Copy Log to Clipboard"; |
103 |
this.btnCopyLogToClipboard.UseVisualStyleBackColor = true; |
104 |
this.btnCopyLogToClipboard.Click += new System.EventHandler(this.btnCopyLogToClipboard_Click); |
105 |
// |
106 |
// LogWriter |
107 |
// |
108 |
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); |
109 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
110 |
this.Controls.Add(this.txtLog); |
111 |
this.Controls.Add(this.pnl_top); |
112 |
this.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
113 |
this.Margin = new System.Windows.Forms.Padding(0); |
114 |
this.Name = "LogWriter"; |
115 |
this.Size = new System.Drawing.Size(280, 270); |
116 |
this.pnl_top.ResumeLayout(false); |
117 |
this.pnl_top_flow.ResumeLayout(false); |
118 |
this.pnl_top_flow.PerformLayout(); |
119 |
this.ResumeLayout(false); |
120 |
|
121 |
} |
122 |
|
123 |
#endregion |
124 |
|
125 |
private System.Windows.Forms.RichTextBox txtLog; |
126 |
private System.Windows.Forms.Panel pnl_top; |
127 |
private System.Windows.Forms.FlowLayoutPanel pnl_top_flow; |
128 |
private System.Windows.Forms.Button btnClearLog; |
129 |
private System.Windows.Forms.Button btnCopyLogToClipboard; |
130 |
private System.Windows.Forms.ToolTip toolTip1; |
131 |
} |
132 |
} |