namespace RomCheater.Logging
{
//partial class LogWriter
//{
// ///
// /// Required designer variable.
// ///
// private System.ComponentModel.IContainer components = null;
// ///
// /// Clean up any resources being used.
// ///
// /// true if managed resources should be disposed; otherwise, false.
// protected override void Dispose(bool disposing)
// {
// if (disposing && (components != null))
// {
// components.Dispose();
// }
// base.Dispose(disposing);
// }
// #region Component Designer generated code
// ///
// /// Required method for Designer support - do not modify
// /// the contents of this method with the code editor.
// ///
// private void InitializeComponent()
// {
// this.components = new System.ComponentModel.Container();
// this.txtLog = new System.Windows.Forms.RichTextBox();
// this.pnl_top = new System.Windows.Forms.Panel();
// this.pnl_top_flow = new System.Windows.Forms.FlowLayoutPanel();
// this.btnClearLog = new System.Windows.Forms.Button();
// this.btnCopyLogToClipboard = new System.Windows.Forms.Button();
// this.chkAutoScroll = new System.Windows.Forms.CheckBox();
// this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
// this.pnl_top.SuspendLayout();
// this.pnl_top_flow.SuspendLayout();
// this.SuspendLayout();
// //
// // txtLog
// //
// this.txtLog.BackColor = System.Drawing.SystemColors.ControlDark;
// this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill;
// this.txtLog.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
// this.txtLog.Location = new System.Drawing.Point(0, 30);
// this.txtLog.Margin = new System.Windows.Forms.Padding(0);
// this.txtLog.Name = "txtLog";
// this.txtLog.ReadOnly = true;
// this.txtLog.Size = new System.Drawing.Size(469, 240);
// this.txtLog.TabIndex = 0;
// this.txtLog.Text = "";
// this.txtLog.TextChanged += new System.EventHandler(this.txtLog_TextChanged);
// //
// // pnl_top
// //
// this.pnl_top.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
// this.pnl_top.Controls.Add(this.pnl_top_flow);
// this.pnl_top.Dock = System.Windows.Forms.DockStyle.Top;
// this.pnl_top.Location = new System.Drawing.Point(0, 0);
// this.pnl_top.Margin = new System.Windows.Forms.Padding(0);
// this.pnl_top.Name = "pnl_top";
// this.pnl_top.Size = new System.Drawing.Size(469, 30);
// this.pnl_top.TabIndex = 1;
// //
// // pnl_top_flow
// //
// this.pnl_top_flow.AutoScroll = true;
// this.pnl_top_flow.Controls.Add(this.btnClearLog);
// this.pnl_top_flow.Controls.Add(this.btnCopyLogToClipboard);
// this.pnl_top_flow.Controls.Add(this.chkAutoScroll);
// this.pnl_top_flow.Dock = System.Windows.Forms.DockStyle.Fill;
// this.pnl_top_flow.Location = new System.Drawing.Point(0, 0);
// this.pnl_top_flow.Margin = new System.Windows.Forms.Padding(0);
// this.pnl_top_flow.Name = "pnl_top_flow";
// this.pnl_top_flow.Size = new System.Drawing.Size(465, 26);
// this.pnl_top_flow.TabIndex = 0;
// //
// // btnClearLog
// //
// this.btnClearLog.AutoSize = true;
// this.btnClearLog.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
// this.btnClearLog.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
// this.btnClearLog.Location = new System.Drawing.Point(0, 0);
// this.btnClearLog.Margin = new System.Windows.Forms.Padding(0);
// this.btnClearLog.Name = "btnClearLog";
// this.btnClearLog.Size = new System.Drawing.Size(90, 26);
// this.btnClearLog.TabIndex = 0;
// this.btnClearLog.Text = "Clear Log";
// this.btnClearLog.UseVisualStyleBackColor = true;
// this.btnClearLog.Click += new System.EventHandler(this.btnClearLog_Click);
// //
// // btnCopyLogToClipboard
// //
// this.btnCopyLogToClipboard.AutoSize = true;
// this.btnCopyLogToClipboard.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
// this.btnCopyLogToClipboard.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
// this.btnCopyLogToClipboard.Location = new System.Drawing.Point(90, 0);
// this.btnCopyLogToClipboard.Margin = new System.Windows.Forms.Padding(0);
// this.btnCopyLogToClipboard.Name = "btnCopyLogToClipboard";
// this.btnCopyLogToClipboard.Size = new System.Drawing.Size(186, 26);
// this.btnCopyLogToClipboard.TabIndex = 1;
// this.btnCopyLogToClipboard.Text = "Copy Log to Clipboard";
// this.btnCopyLogToClipboard.UseVisualStyleBackColor = true;
// this.btnCopyLogToClipboard.Click += new System.EventHandler(this.btnCopyLogToClipboard_Click);
// //
// // chkAutoScroll
// //
// this.chkAutoScroll.AutoSize = true;
// this.chkAutoScroll.Location = new System.Drawing.Point(279, 3);
// this.chkAutoScroll.Name = "chkAutoScroll";
// this.chkAutoScroll.Size = new System.Drawing.Size(163, 20);
// this.chkAutoScroll.TabIndex = 2;
// this.chkAutoScroll.Text = "Auto Scroll Ouput";
// this.chkAutoScroll.UseVisualStyleBackColor = true;
// this.chkAutoScroll.CheckedChanged += new System.EventHandler(this.chkAutoScroll_CheckedChanged);
// //
// // LogWriter
// //
// this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
// this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
// this.Controls.Add(this.txtLog);
// this.Controls.Add(this.pnl_top);
// this.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
// this.Margin = new System.Windows.Forms.Padding(0);
// this.Name = "LogWriter";
// this.Size = new System.Drawing.Size(469, 270);
// this.Load += new System.EventHandler(this.LogWriter_Load);
// this.pnl_top.ResumeLayout(false);
// this.pnl_top_flow.ResumeLayout(false);
// this.pnl_top_flow.PerformLayout();
// this.ResumeLayout(false);
// }
// #endregion
// private System.Windows.Forms.RichTextBox txtLog;
// private System.Windows.Forms.Panel pnl_top;
// private System.Windows.Forms.FlowLayoutPanel pnl_top_flow;
// private System.Windows.Forms.Button btnClearLog;
// private System.Windows.Forms.Button btnCopyLogToClipboard;
// private System.Windows.Forms.ToolTip toolTip1;
// private System.Windows.Forms.CheckBox chkAutoScroll;
//}
}