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.autoscroll_timer = new System.Windows.Forms.Timer(this.components); |
39 |
+ |
this.logupdater = new System.ComponentModel.BackgroundWorker(); |
40 |
|
this.pnl_top.SuspendLayout(); |
41 |
|
this.pnl_top_flow.SuspendLayout(); |
42 |
|
this.SuspendLayout(); |
105 |
|
this.btnCopyLogToClipboard.UseVisualStyleBackColor = true; |
106 |
|
this.btnCopyLogToClipboard.Click += new System.EventHandler(this.btnCopyLogToClipboard_Click); |
107 |
|
// |
108 |
+ |
// autoscroll_timer |
109 |
+ |
// |
110 |
+ |
this.autoscroll_timer.Interval = 1000; |
111 |
+ |
this.autoscroll_timer.Tick += new System.EventHandler(this.autoscroll_timer_Tick); |
112 |
+ |
// |
113 |
+ |
// logupdater |
114 |
+ |
// |
115 |
+ |
this.logupdater.DoWork += new System.ComponentModel.DoWorkEventHandler(this.logupdater_DoWork); |
116 |
+ |
this.logupdater.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.logupdater_RunWorkerCompleted); |
117 |
+ |
// |
118 |
|
// LogWriter |
119 |
|
// |
120 |
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); |
140 |
|
private System.Windows.Forms.Button btnClearLog; |
141 |
|
private System.Windows.Forms.Button btnCopyLogToClipboard; |
142 |
|
private System.Windows.Forms.ToolTip toolTip1; |
143 |
+ |
private System.Windows.Forms.Timer autoscroll_timer; |
144 |
+ |
private System.ComponentModel.BackgroundWorker logupdater; |
145 |
|
} |
146 |
|
} |