This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Installer-Launcher/Launcher_App/ProgramLauncher/Form1.Designer.cs
jmaniuvc f0b7dfd413 main
2025-05-15 11:44:27 +09:00

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.Label_ProgressState = new System.Windows.Forms.Label();
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(367, 225);
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";
//
// Label_ProgressState
//
this.Label_ProgressState.Anchor = System.Windows.Forms.AnchorStyles.None;
this.Label_ProgressState.AutoSize = true;
this.Label_ProgressState.Location = new System.Drawing.Point(367, 165);
this.Label_ProgressState.Name = "Label_ProgressState";
this.Label_ProgressState.Size = new System.Drawing.Size(57, 12);
this.Label_ProgressState.TabIndex = 2;
this.Label_ProgressState.Text = "실행 중...";
//
// 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.Label_ProgressState);
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.Label Label_ProgressState;
}
}