This commit is contained in:
2014-10-08 09:37:02 +00:00
parent 1fac360745
commit ddc18468dc
3 changed files with 1584 additions and 42 deletions

51
Form1.Designer.cs generated
View File

@@ -28,14 +28,20 @@
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.Process = new System.Windows.Forms.CheckBox();
this.tbURL = new System.Windows.Forms.TextBox();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.lbReqCnt = new System.Windows.Forms.Label();
this.lbRespCnt = new System.Windows.Forms.Label();
this.lbStatus = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// Process
//
this.Process.Appearance = System.Windows.Forms.Appearance.Button;
this.Process.Location = new System.Drawing.Point(104, 65);
this.Process.Location = new System.Drawing.Point(12, 49);
this.Process.Name = "Process";
this.Process.Size = new System.Drawing.Size(139, 77);
this.Process.TabIndex = 0;
@@ -51,15 +57,54 @@
this.tbURL.Size = new System.Drawing.Size(343, 21);
this.tbURL.TabIndex = 1;
//
// notifyIcon1
//
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "notifyIcon1";
this.notifyIcon1.Visible = true;
this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
//
// lbReqCnt
//
this.lbReqCnt.AutoSize = true;
this.lbReqCnt.Location = new System.Drawing.Point(12, 151);
this.lbReqCnt.Name = "lbReqCnt";
this.lbReqCnt.Size = new System.Drawing.Size(47, 12);
this.lbReqCnt.TabIndex = 2;
this.lbReqCnt.Text = "요청 : 0";
//
// lbRespCnt
//
this.lbRespCnt.AutoSize = true;
this.lbRespCnt.Location = new System.Drawing.Point(12, 168);
this.lbRespCnt.Name = "lbRespCnt";
this.lbRespCnt.Size = new System.Drawing.Size(47, 12);
this.lbRespCnt.TabIndex = 3;
this.lbRespCnt.Text = "응답 : 0";
//
// lbStatus
//
this.lbStatus.AutoSize = true;
this.lbStatus.Location = new System.Drawing.Point(12, 184);
this.lbStatus.Name = "lbStatus";
this.lbStatus.Size = new System.Drawing.Size(65, 12);
this.lbStatus.TabIndex = 4;
this.lbStatus.Text = "상태 : 대기";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(367, 212);
this.Controls.Add(this.lbStatus);
this.Controls.Add(this.lbRespCnt);
this.Controls.Add(this.lbReqCnt);
this.Controls.Add(this.tbURL);
this.Controls.Add(this.Process);
this.Name = "Form1";
this.Text = "Form1";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Resize += new System.EventHandler(this.Form1_Resize);
this.ResumeLayout(false);
this.PerformLayout();
@@ -69,6 +114,10 @@
private System.Windows.Forms.CheckBox Process;
private System.Windows.Forms.TextBox tbURL;
private System.Windows.Forms.NotifyIcon notifyIcon1;
private System.Windows.Forms.Label lbReqCnt;
private System.Windows.Forms.Label lbRespCnt;
private System.Windows.Forms.Label lbStatus;
}
}