98 lines
4.5 KiB
C#
98 lines
4.5 KiB
C#
|
namespace NewPosInstaller
|
|||
|
{
|
|||
|
partial class frmInstaller
|
|||
|
{
|
|||
|
/// <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.components = new System.ComponentModel.Container();
|
|||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmInstaller));
|
|||
|
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
|
|||
|
this.lblTitle = new System.Windows.Forms.Label();
|
|||
|
this.lblWork = new System.Windows.Forms.Label();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// notifyIcon
|
|||
|
//
|
|||
|
this.notifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
|
|||
|
this.notifyIcon.BalloonTipTitle = "SPC New POS Installer";
|
|||
|
this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
|
|||
|
this.notifyIcon.Text = "SPC New POS Installer";
|
|||
|
this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
|
|||
|
//
|
|||
|
// lblTitle
|
|||
|
//
|
|||
|
this.lblTitle.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
this.lblTitle.Location = new System.Drawing.Point(12, 9);
|
|||
|
this.lblTitle.Name = "lblTitle";
|
|||
|
this.lblTitle.Size = new System.Drawing.Size(360, 33);
|
|||
|
this.lblTitle.TabIndex = 2;
|
|||
|
this.lblTitle.Text = "New POS program is being installed.\r\nPlease wait a moment.";
|
|||
|
this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|||
|
//
|
|||
|
// lblWork
|
|||
|
//
|
|||
|
this.lblWork.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
this.lblWork.Location = new System.Drawing.Point(12, 49);
|
|||
|
this.lblWork.Name = "lblWork";
|
|||
|
this.lblWork.Size = new System.Drawing.Size(360, 53);
|
|||
|
this.lblWork.TabIndex = 4;
|
|||
|
this.lblWork.Text = "SPC New POS program is being installed.";
|
|||
|
this.lblWork.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|||
|
//
|
|||
|
// frmInstaller
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|||
|
this.ClientSize = new System.Drawing.Size(384, 111);
|
|||
|
this.Controls.Add(this.lblWork);
|
|||
|
this.Controls.Add(this.lblTitle);
|
|||
|
this.DoubleBuffered = true;
|
|||
|
this.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|||
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "frmInstaller";
|
|||
|
this.ShowInTaskbar = false;
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
|||
|
this.Text = "SPC New POS Installer";
|
|||
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_Closing);
|
|||
|
this.Load += new System.EventHandler(this.Form_Load);
|
|||
|
this.Shown += new System.EventHandler(this.Form_Shown);
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.NotifyIcon notifyIcon;
|
|||
|
private System.Windows.Forms.Label lblTitle;
|
|||
|
private System.Windows.Forms.Label lblWork;
|
|||
|
}
|
|||
|
}
|
|||
|
|