87 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace FCOMMON
 | |
| {
 | |
|     partial class fProgress
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Required designer variable.
 | |
|         /// </summary>
 | |
|         private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Clean up any resources being used.
 | |
|         /// </summary>
 | |
|         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
|         protected override void Dispose(bool disposing)
 | |
|         {
 | |
|             if (disposing && (components != null))
 | |
|             {
 | |
|                 components.Dispose();
 | |
|             }
 | |
|             base.Dispose(disposing);
 | |
|         }
 | |
| 
 | |
|         #region Windows Form Designer generated code
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Required method for Designer support - do not modify
 | |
|         /// the contents of this method with the code editor.
 | |
|         /// </summary>
 | |
|         private void InitializeComponent()
 | |
|         {
 | |
|             this.progressBar1 = new System.Windows.Forms.ProgressBar();
 | |
|             this.label1 = new System.Windows.Forms.Label();
 | |
|             this.panel1 = new System.Windows.Forms.Panel();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // progressBar1
 | |
|             // 
 | |
|             this.progressBar1.Dock = System.Windows.Forms.DockStyle.Bottom;
 | |
|             this.progressBar1.Location = new System.Drawing.Point(10, 162);
 | |
|             this.progressBar1.Name = "progressBar1";
 | |
|             this.progressBar1.Size = new System.Drawing.Size(578, 33);
 | |
|             this.progressBar1.TabIndex = 0;
 | |
|             // 
 | |
|             // label1
 | |
|             // 
 | |
|             this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.label1.Font = new System.Drawing.Font("맑은 고딕", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             this.label1.Location = new System.Drawing.Point(10, 10);
 | |
|             this.label1.Name = "label1";
 | |
|             this.label1.Size = new System.Drawing.Size(578, 142);
 | |
|             this.label1.TabIndex = 1;
 | |
|             this.label1.Text = "---";
 | |
|             this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 | |
|             // 
 | |
|             // panel1
 | |
|             // 
 | |
|             this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
 | |
|             this.panel1.Location = new System.Drawing.Point(10, 152);
 | |
|             this.panel1.Name = "panel1";
 | |
|             this.panel1.Size = new System.Drawing.Size(578, 10);
 | |
|             this.panel1.TabIndex = 2;
 | |
|             // 
 | |
|             // fProgress
 | |
|             // 
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
 | |
|             this.ClientSize = new System.Drawing.Size(598, 205);
 | |
|             this.Controls.Add(this.label1);
 | |
|             this.Controls.Add(this.panel1);
 | |
|             this.Controls.Add(this.progressBar1);
 | |
|             this.MaximizeBox = false;
 | |
|             this.MinimizeBox = false;
 | |
|             this.Name = "fProgress";
 | |
|             this.Padding = new System.Windows.Forms.Padding(10);
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Text = "잠시만 기다리세요";
 | |
|             this.Load += new System.EventHandler(this.fProgress_Load);
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.ProgressBar progressBar1;
 | |
|         private System.Windows.Forms.Label label1;
 | |
|         private System.Windows.Forms.Panel panel1;
 | |
|     }
 | |
| } | 
