namespace WebChecker { partial class Form1 { /// /// 필수 디자이너 변수입니다. /// private System.ComponentModel.IContainer components = null; /// /// 사용 중인 모든 리소스를 정리합니다. /// /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다. protected override void Dispose(bool disposing) { if(disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form 디자이너에서 생성한 코드 /// /// 디자이너 지원에 필요한 메서드입니다. /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오. /// 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.btOpen = new System.Windows.Forms.Button(); this.SuspendLayout(); // // Process // this.Process.Appearance = System.Windows.Forms.Appearance.Button; 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; 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; // // notifyIcon1 // this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon"))); this.notifyIcon1.Text = "Checker"; 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 = "상태 : 대기"; // // 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); this.Controls.Add(this.tbURL); this.Controls.Add(this.Process); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "Form1"; this.Text = "Checker"; this.Load += new System.EventHandler(this.Form1_Load); this.Shown += new System.EventHandler(this.Form1_Shown); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); this.Resize += new System.EventHandler(this.Form1_Resize); this.ResumeLayout(false); this.PerformLayout(); } #endregion 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; private System.Windows.Forms.Button btOpen; } }