namespace TextFieldsExample
{
partial class MainForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.buttonMoveText = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(12, 12);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 20);
this.textBox1.TabIndex = 0;
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(12, 38);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(100, 20);
this.textBox2.TabIndex = 1;
//
// buttonMoveText
//
this.buttonMoveText.Location = new System.Drawing.Point(12, 64);
this.buttonMoveText.Name = "buttonMoveText";
this.buttonMoveText.Size = new System.Drawing.Size(100, 23);
this.buttonMoveText.TabIndex = 2;
this.buttonMoveText.Text = "Move Text";
this.buttonMoveText.UseVisualStyleBackColor = true;
this.buttonMoveText.Click += new System.EventHandler(this.buttonMoveText_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(126, 104);
this.Controls.Add(this.buttonMoveText);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Name = "MainForm";
this.Text = "Text Fields Example";