entity 오류로인해 제거해야해서 . 제거전 백업
This commit is contained in:
56
DBMigration/Forms/ProgressForm.Designer.cs
generated
Normal file
56
DBMigration/Forms/ProgressForm.Designer.cs
generated
Normal file
@@ -0,0 +1,56 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user