ConsoleControl.ConsoleControl.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
		private void InitializeComponent() {
			this.components = new System.ComponentModel.Container();
			this.richTextBoxConsole = new System.Windows.Forms.RichTextBox();
			this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.btnCopy = new System.Windows.Forms.ToolStripMenuItem();
			this.btnPaste = new System.Windows.Forms.ToolStripMenuItem();
			this.btnClear = new System.Windows.Forms.ToolStripMenuItem();
			this.contextMenuStrip1.SuspendLayout();
			this.SuspendLayout();
			// 
			// richTextBoxConsole
			// 
			this.richTextBoxConsole.AcceptsTab = true;
			this.richTextBoxConsole.BackColor = System.Drawing.Color.Black;
			this.richTextBoxConsole.ContextMenuStrip = this.contextMenuStrip1;
			this.richTextBoxConsole.Dock = System.Windows.Forms.DockStyle.Fill;
			this.richTextBoxConsole.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.richTextBoxConsole.ForeColor = System.Drawing.Color.White;
			this.richTextBoxConsole.Location = new System.Drawing.Point(0, 0);
			this.richTextBoxConsole.Name = "richTextBoxConsole";
			this.richTextBoxConsole.ReadOnly = true;
			this.richTextBoxConsole.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
			this.richTextBoxConsole.Size = new System.Drawing.Size(150, 150);
			this.richTextBoxConsole.TabIndex = 0;
			this.richTextBoxConsole.Text = "";
			this.richTextBoxConsole.TextChanged += new System.EventHandler(this.richTextBoxConsole_TextChanged);
			// 
			// contextMenuStrip1
			// 
			this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnCopy,
            this.btnPaste,
            this.btnClear});
			this.contextMenuStrip1.Name = "contextMenuStrip1";
			this.contextMenuStrip1.Size = new System.Drawing.Size(103, 70);
			// 
			// btnCopy
			// 
			this.btnCopy.Name = "btnCopy";
			this.btnCopy.Size = new System.Drawing.Size(102, 22);
			this.btnCopy.Text = "Copy";
			this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
			// 
			// btnPaste
			// 
			this.btnPaste.Name = "btnPaste";
			this.btnPaste.Size = new System.Drawing.Size(102, 22);
			this.btnPaste.Text = "Paste";
			this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click);
			// 
			// btnClear
			// 
			this.btnClear.Name = "btnClear";
			this.btnClear.Size = new System.Drawing.Size(102, 22);
			this.btnClear.Text = "Clear";
			this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
			// 
			// ConsoleControl
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.richTextBoxConsole);
			this.Name = "ConsoleControl";
			this.contextMenuStrip1.ResumeLayout(false);
			this.ResumeLayout(false);

		}