|
@@ -29,11 +29,12 @@
|
|
|
private void InitializeComponent()
|
|
private void InitializeComponent()
|
|
|
{
|
|
{
|
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
|
|
|
+ this.textBox1 = new System.Windows.Forms.TextBox();
|
|
|
this.SuspendLayout();
|
|
this.SuspendLayout();
|
|
|
//
|
|
//
|
|
|
// button1
|
|
// button1
|
|
|
//
|
|
//
|
|
|
- this.button1.Location = new System.Drawing.Point(41, 28);
|
|
|
|
|
|
|
+ this.button1.Location = new System.Drawing.Point(12, 12);
|
|
|
this.button1.Name = "button1";
|
|
this.button1.Name = "button1";
|
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
|
this.button1.TabIndex = 0;
|
|
this.button1.TabIndex = 0;
|
|
@@ -41,21 +42,36 @@
|
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
|
//
|
|
//
|
|
|
|
|
+ // textBox1
|
|
|
|
|
+ //
|
|
|
|
|
+ this.textBox1.BackColor = System.Drawing.Color.Black;
|
|
|
|
|
+ this.textBox1.ForeColor = System.Drawing.Color.White;
|
|
|
|
|
+ this.textBox1.Location = new System.Drawing.Point(12, 237);
|
|
|
|
|
+ this.textBox1.Multiline = true;
|
|
|
|
|
+ this.textBox1.Name = "textBox1";
|
|
|
|
|
+ this.textBox1.ReadOnly = true;
|
|
|
|
|
+ this.textBox1.Size = new System.Drawing.Size(544, 92);
|
|
|
|
|
+ this.textBox1.TabIndex = 1;
|
|
|
|
|
+ //
|
|
|
// MainForm
|
|
// MainForm
|
|
|
//
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
- this.ClientSize = new System.Drawing.Size(284, 261);
|
|
|
|
|
|
|
+ this.AutoScroll = true;
|
|
|
|
|
+ this.ClientSize = new System.Drawing.Size(568, 341);
|
|
|
|
|
+ this.Controls.Add(this.textBox1);
|
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.button1);
|
|
|
this.Name = "MainForm";
|
|
this.Name = "MainForm";
|
|
|
this.Text = "Form1";
|
|
this.Text = "Form1";
|
|
|
this.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
|
+ this.PerformLayout();
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
#endregion
|
|
|
|
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.Button button1;
|
|
|
|
|
+ private System.Windows.Forms.TextBox textBox1;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|