77 lines
3.0 KiB
C#
77 lines
3.0 KiB
C#
namespace ProgramLauncher
|
|
{
|
|
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.Label_UpdateFileName = new System.Windows.Forms.Label();
|
|
this.ProgressBar = new System.Windows.Forms.ProgressBar();
|
|
this.SuspendLayout();
|
|
//
|
|
// Label_UpdateFileName
|
|
//
|
|
this.Label_UpdateFileName.Anchor = System.Windows.Forms.AnchorStyles.None;
|
|
this.Label_UpdateFileName.AutoSize = true;
|
|
this.Label_UpdateFileName.Location = new System.Drawing.Point(47, 344);
|
|
this.Label_UpdateFileName.Name = "Label_UpdateFileName";
|
|
this.Label_UpdateFileName.Size = new System.Drawing.Size(39, 12);
|
|
this.Label_UpdateFileName.TabIndex = 1;
|
|
this.Label_UpdateFileName.Text = "Name";
|
|
//
|
|
// ProgressBar
|
|
//
|
|
this.ProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.ProgressBar.Location = new System.Drawing.Point(50, 360);
|
|
this.ProgressBar.Name = "ProgressBar";
|
|
this.ProgressBar.Size = new System.Drawing.Size(700, 23);
|
|
this.ProgressBar.TabIndex = 2;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.ProgressBar);
|
|
this.Controls.Add(this.Label_UpdateFileName);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label Label_UpdateFileName;
|
|
private System.Windows.Forms.ProgressBar ProgressBar;
|
|
}
|
|
}
|
|
|