namespace WindowsFormsApplication1
{
partial class MainForm
{
///
/// 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 Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.executeButton = new System.Windows.Forms.Button();
this.sourceTextBox = new System.Windows.Forms.TextBox();
this.resultTextBox = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 0;
this.label1.Text = "label1";
//
// textBox1
//
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox1.Location = new System.Drawing.Point(15, 25);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(427, 20);
this.textBox1.TabIndex = 1;
this.textBox1.Text = "textBox1";
//
// splitContainer1
//
this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.splitContainer1.Location = new System.Drawing.Point(15, 62);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.sourceTextBox);
this.splitContainer1.Panel1.Controls.Add(this.executeButton);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.resultTextBox);
this.splitContainer1.Size = new System.Drawing.Size(427, 313);
this.splitContainer1.SplitterDistance = 143;
this.splitContainer1.TabIndex = 2;
//
// executeButton
//
this.executeButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.executeButton.Location = new System.Drawing.Point(174, 117);
this.executeButton.Name = "executeButton";
this.executeButton.Size = new System.Drawing.Size(75, 23);
this.executeButton.TabIndex = 0;
this.executeButton.Text = "Execute";
this.executeButton.UseVisualStyleBackColor = true;
this.executeButton.Click += new System.EventHandler(this.executeButton_Click);
//
// sourceTextBox
//
this.sourceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.sourceTextBox.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.sourceTextBox.Location = new System.Drawing.Point(0, 0);
this.sourceTextBox.Multiline = true;
this.sourceTextBox.Name = "sourceTextBox";
this.sourceTextBox.Size = new System.Drawing.Size(427, 111);
this.sourceTextBox.TabIndex = 1;
//
// resultTextBox
//
this.resultTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.resultTextBox.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.resultTextBox.Location = new System.Drawing.Point(0, 0);
this.resultTextBox.Multiline = true;
this.resultTextBox.Name = "resultTextBox";
this.resultTextBox.Size = new System.Drawing.Size(427, 166);
this.resultTextBox.TabIndex = 0;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(454, 387);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label1);
this.Name = "MainForm";
this.Text = "MainForm";
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.TextBox sourceTextBox;
private System.Windows.Forms.Button executeButton;
private System.Windows.Forms.TextBox resultTextBox;
}
}