123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- namespace CommonFroms.Utils
- {
- partial class ConsoleOutput
- {
- /// <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.components = new System.ComponentModel.Container();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.toolStrip1 = new System.Windows.Forms.ToolStrip();
- this.toolDock = new System.Windows.Forms.ToolStripButton();
- this.toolStrip1.SuspendLayout();
- this.SuspendLayout();
- //
- // textBox1
- //
- this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.textBox1.Location = new System.Drawing.Point(0, 25);
- this.textBox1.MaxLength = 400000;
- this.textBox1.Multiline = true;
- this.textBox1.Name = "textBox1";
- this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.textBox1.Size = new System.Drawing.Size(778, 363);
- this.textBox1.TabIndex = 0;
- this.textBox1.WordWrap = false;
- //
- // timer1
- //
- this.timer1.Enabled = true;
- this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // toolStrip1
- //
- this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolDock});
- this.toolStrip1.Location = new System.Drawing.Point(0, 0);
- this.toolStrip1.Name = "toolStrip1";
- this.toolStrip1.Size = new System.Drawing.Size(778, 25);
- this.toolStrip1.TabIndex = 1;
- this.toolStrip1.Text = "toolStrip1";
- //
- // toolDock
- //
- this.toolDock.Checked = true;
- this.toolDock.CheckOnClick = true;
- this.toolDock.CheckState = System.Windows.Forms.CheckState.Checked;
- this.toolDock.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.toolDock.Image = global::CommonFroms.Properties.Resources.Image34;
- this.toolDock.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.toolDock.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolDock.Name = "toolDock";
- this.toolDock.Size = new System.Drawing.Size(23, 22);
- this.toolDock.Text = "Dock";
- //
- // ConsoleOutput
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(778, 388);
- this.ControlBox = false;
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.toolStrip1);
- this.Name = "ConsoleOutput";
- this.ShowInTaskbar = false;
- this.Text = "ConsoleOutput";
- this.toolStrip1.ResumeLayout(false);
- this.toolStrip1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Timer timer1;
- private System.Windows.Forms.ToolStrip toolStrip1;
- private System.Windows.Forms.ToolStripButton toolDock;
- }
- }
|