This commit is contained in:
2014-10-08 11:09:53 +00:00
parent ddc18468dc
commit b2929f0d27
3 changed files with 30 additions and 1 deletions

13
Form1.Designer.cs generated
View File

@@ -36,6 +36,7 @@
this.lbReqCnt = new System.Windows.Forms.Label();
this.lbRespCnt = new System.Windows.Forms.Label();
this.lbStatus = new System.Windows.Forms.Label();
this.btOpen = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// Process
@@ -91,11 +92,22 @@
this.lbStatus.TabIndex = 4;
this.lbStatus.Text = "상태 : 대기";
//
// btOpen
//
this.btOpen.Location = new System.Drawing.Point(280, 49);
this.btOpen.Name = "btOpen";
this.btOpen.Size = new System.Drawing.Size(75, 23);
this.btOpen.TabIndex = 5;
this.btOpen.Text = "Open";
this.btOpen.UseVisualStyleBackColor = true;
this.btOpen.Click += new System.EventHandler(this.btOpen_Click);
//
// 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.btOpen);
this.Controls.Add(this.lbStatus);
this.Controls.Add(this.lbRespCnt);
this.Controls.Add(this.lbReqCnt);
@@ -118,6 +130,7 @@
private System.Windows.Forms.Label lbReqCnt;
private System.Windows.Forms.Label lbRespCnt;
private System.Windows.Forms.Label lbStatus;
private System.Windows.Forms.Button btOpen;
}
}