Files
advertisingprofitcontrol-pr…/StringInputParseTester/Form1.Designer.cs
T

108 lines
4.2 KiB
C#

namespace StringInputParseTester
{
partial class Form1
{
/// <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.inputTextBox = new System.Windows.Forms.TextBox();
this.outputTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.richTextBoxOutput = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// inputTextBox
//
this.inputTextBox.Location = new System.Drawing.Point(22, 79);
this.inputTextBox.Margin = new System.Windows.Forms.Padding(6);
this.inputTextBox.Name = "inputTextBox";
this.inputTextBox.Size = new System.Drawing.Size(473, 29);
this.inputTextBox.TabIndex = 0;
//
// outputTextBox
//
this.outputTextBox.Location = new System.Drawing.Point(22, 220);
this.outputTextBox.Margin = new System.Windows.Forms.Padding(6);
this.outputTextBox.Name = "outputTextBox";
this.outputTextBox.Size = new System.Drawing.Size(473, 29);
this.outputTextBox.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(22, 291);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(64, 25);
this.label1.TabIndex = 2;
this.label1.Text = "label1";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 448);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(64, 25);
this.label2.TabIndex = 3;
this.label2.Text = "label2";
//
// richTextBoxOutput
//
this.richTextBoxOutput.Location = new System.Drawing.Point(22, 173);
this.richTextBoxOutput.Name = "richTextBoxOutput";
this.richTextBoxOutput.Size = new System.Drawing.Size(473, 49);
this.richTextBoxOutput.TabIndex = 4;
this.richTextBoxOutput.Text = "";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(521, 482);
this.Controls.Add(this.richTextBoxOutput);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.outputTextBox);
this.Controls.Add(this.inputTextBox);
this.Margin = new System.Windows.Forms.Padding(6);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox inputTextBox;
private System.Windows.Forms.TextBox outputTextBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.RichTextBox richTextBoxOutput;
}
}