75 lines
2.2 KiB
C#
75 lines
2.2 KiB
C#
namespace WebChecker
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// 필수 디자이너 변수입니다.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 사용 중인 모든 리소스를 정리합니다.
|
|
/// </summary>
|
|
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if(disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form 디자이너에서 생성한 코드
|
|
|
|
/// <summary>
|
|
/// 디자이너 지원에 필요한 메서드입니다.
|
|
/// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
|
|
/// </summary>
|
|
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.Location = new System.Drawing.Point(104, 65);
|
|
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;
|
|
//
|
|
// 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.tbURL);
|
|
this.Controls.Add(this.Process);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.CheckBox Process;
|
|
private System.Windows.Forms.TextBox tbURL;
|
|
}
|
|
}
|
|
|