68 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace DBMigration.Forms
 | |
| {
 | |
|     partial class MainForm
 | |
|     {
 | |
|         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.treeObjects = new System.Windows.Forms.TreeView();
 | |
|             this.btnConnectSource = new System.Windows.Forms.Button();
 | |
|             this.btnMigrate = new System.Windows.Forms.Button();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // treeObjects
 | |
|             // 
 | |
|             this.treeObjects.Location = new System.Drawing.Point(12, 12);
 | |
|             this.treeObjects.Name = "treeObjects";
 | |
|             this.treeObjects.Size = new System.Drawing.Size(300, 400);
 | |
|             this.treeObjects.TabIndex = 0;
 | |
|             // 
 | |
|             // btnConnectSource
 | |
|             // 
 | |
|             this.btnConnectSource.Location = new System.Drawing.Point(12, 418);
 | |
|             this.btnConnectSource.Name = "btnConnectSource";
 | |
|             this.btnConnectSource.Size = new System.Drawing.Size(150, 30);
 | |
|             this.btnConnectSource.TabIndex = 1;
 | |
|             this.btnConnectSource.Text = "소스 DB 연결";
 | |
|             this.btnConnectSource.UseVisualStyleBackColor = true;
 | |
|             this.btnConnectSource.Click += new System.EventHandler(this.btnConnectSource_Click);
 | |
|             // 
 | |
|             // btnMigrate
 | |
|             // 
 | |
|             this.btnMigrate.Location = new System.Drawing.Point(168, 418);
 | |
|             this.btnMigrate.Name = "btnMigrate";
 | |
|             this.btnMigrate.Size = new System.Drawing.Size(144, 30);
 | |
|             this.btnMigrate.TabIndex = 2;
 | |
|             this.btnMigrate.Text = "마이그레이션 시작";
 | |
|             this.btnMigrate.UseVisualStyleBackColor = true;
 | |
|             this.btnMigrate.Click += new System.EventHandler(this.btnMigrate_Click);
 | |
|             // 
 | |
|             // MainForm
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(324, 461);
 | |
|             this.Controls.Add(this.btnMigrate);
 | |
|             this.Controls.Add(this.btnConnectSource);
 | |
|             this.Controls.Add(this.treeObjects);
 | |
|             this.Name = "MainForm";
 | |
|             this.Text = "DB Migration Tool";
 | |
|             this.ResumeLayout(false);
 | |
|         }
 | |
| 
 | |
|         private System.Windows.Forms.TreeView treeObjects;
 | |
|         private System.Windows.Forms.Button btnConnectSource;
 | |
|         private System.Windows.Forms.Button btnMigrate;
 | |
|     }
 | |
| }
 | 
