57 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace DBMigration.Forms
 | |
| {
 | |
|     partial class ProgressForm
 | |
|     {
 | |
|         private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
|         protected override void Dispose(bool disposing)
 | |
|         {
 | |
|             if (disposing && (components != null))
 | |
|             {
 | |
|                 components.Dispose();
 | |
|             }
 | |
|             base.Dispose(disposing);
 | |
|         }
 | |
| 
 | |
|         private void InitializeComponent()
 | |
|         {
 | |
|             this.progressBar = new System.Windows.Forms.ProgressBar();
 | |
|             this.logTextBox = new System.Windows.Forms.TextBox();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // progressBar
 | |
|             // 
 | |
|             this.progressBar.Location = new System.Drawing.Point(12, 12);
 | |
|             this.progressBar.Name = "progressBar";
 | |
|             this.progressBar.Size = new System.Drawing.Size(300, 23);
 | |
|             this.progressBar.TabIndex = 0;
 | |
|             // 
 | |
|             // logTextBox
 | |
|             // 
 | |
|             this.logTextBox.Location = new System.Drawing.Point(12, 41);
 | |
|             this.logTextBox.Multiline = true;
 | |
|             this.logTextBox.Name = "logTextBox";
 | |
|             this.logTextBox.ReadOnly = true;
 | |
|             this.logTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
 | |
|             this.logTextBox.Size = new System.Drawing.Size(300, 200);
 | |
|             this.logTextBox.TabIndex = 1;
 | |
|             // 
 | |
|             // ProgressForm
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(324, 253);
 | |
|             this.Controls.Add(this.logTextBox);
 | |
|             this.Controls.Add(this.progressBar);
 | |
|             this.Name = "ProgressForm";
 | |
|             this.Text = "마이그레이션 진행 상황";
 | |
|             this.Load += new System.EventHandler(this.ProgressForm_Load);
 | |
|             this.ResumeLayout(false);
 | |
|             this.PerformLayout();
 | |
|         }
 | |
| 
 | |
|         private System.Windows.Forms.ProgressBar progressBar;
 | |
|         private System.Windows.Forms.TextBox logTextBox;
 | |
|     }
 | |
| }
 | 
