This commit is contained in:
2014-10-06 09:56:39 +00:00
parent ea86488e44
commit 1fac360745
2 changed files with 67 additions and 13 deletions

18
Form1.Designer.cs generated
View File

@@ -29,25 +29,34 @@
private void InitializeComponent()
{
this.Process = new System.Windows.Forms.CheckBox();
this.tbURL = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// Process
//
this.Process.Appearance = System.Windows.Forms.Appearance.Button;
this.Process.AutoSize = true;
this.Process.Location = new System.Drawing.Point(90, 61);
this.Process.Location = new System.Drawing.Point(104, 65);
this.Process.Name = "Process";
this.Process.Size = new System.Drawing.Size(62, 22);
this.Process.Size = new System.Drawing.Size(139, 77);
this.Process.TabIndex = 0;
this.Process.Text = "Process";
this.Process.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.Process.UseVisualStyleBackColor = true;
this.Process.CheckedChanged += new System.EventHandler(this.Process_CheckedChanged);
//
// tbURL
//
this.tbURL.Location = new System.Drawing.Point(12, 12);
this.tbURL.Name = "tbURL";
this.tbURL.Size = new System.Drawing.Size(343, 21);
this.tbURL.TabIndex = 1;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.ClientSize = new System.Drawing.Size(367, 212);
this.Controls.Add(this.tbURL);
this.Controls.Add(this.Process);
this.Name = "Form1";
this.Text = "Form1";
@@ -59,6 +68,7 @@
#endregion
private System.Windows.Forms.CheckBox Process;
private System.Windows.Forms.TextBox tbURL;
}
}