CLRTypeImporting.ImportInScript.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.label1 = new System.Windows.Forms.Label();
			this.btnRun = new System.Windows.Forms.Button();
			this.editor = new Unvell.ReoScript.Editor.ReoScriptEditorControl();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(22, 26);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(362, 13);
			this.label1.TabIndex = 7;
			this.label1.Text = "Execute the following script will create a windows form and put a LinkLabel.";
			// 
			// btnRun
			// 
			this.btnRun.Location = new System.Drawing.Point(679, 57);
			this.btnRun.Name = "btnRun";
			this.btnRun.Size = new System.Drawing.Size(104, 32);
			this.btnRun.TabIndex = 6;
			this.btnRun.Text = "Run";
			this.btnRun.UseVisualStyleBackColor = true;
			// 
			// editor
			// 
			this.editor.AutoSize = true;
			this.editor.Location = new System.Drawing.Point(25, 57);
			this.editor.Name = "editor";
			this.editor.Size = new System.Drawing.Size(633, 338);
			this.editor.TabIndex = 8;
			// 
			// ImportInScript
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(814, 421);
			this.Controls.Add(this.editor);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.btnRun);
			this.Name = "ImportInScript";
			this.Text = "Import Type In Script";
			this.ResumeLayout(false);
			this.PerformLayout();

		}