|
@@ -31,6 +31,7 @@ namespace Yurevich08
|
|
|
{
|
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
|
+ this.label1 = new System.Windows.Forms.Label();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
// button1
|
|
@@ -49,11 +50,21 @@ namespace Yurevich08
|
|
|
this.textBox1.Size = new System.Drawing.Size(100, 20);
|
|
|
this.textBox1.TabIndex = 1;
|
|
|
//
|
|
|
+ // label1
|
|
|
+ //
|
|
|
+ this.label1.AutoSize = true;
|
|
|
+ this.label1.Location = new System.Drawing.Point(152, 111);
|
|
|
+ this.label1.Name = "label1";
|
|
|
+ this.label1.Size = new System.Drawing.Size(35, 13);
|
|
|
+ this.label1.TabIndex = 2;
|
|
|
+ this.label1.Text = "label1";
|
|
|
+ //
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
|
+ this.Controls.Add(this.label1);
|
|
|
this.Controls.Add(this.textBox1);
|
|
|
this.Controls.Add(this.button1);
|
|
|
this.Name = "Form1";
|
|
@@ -67,6 +78,7 @@ namespace Yurevich08
|
|
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
|
+ private System.Windows.Forms.Label label1;
|
|
|
}
|
|
|
}
|
|
|
|