Files
2025-05-21 14:09:29 +09:00

293 lines
13 KiB
C#

namespace SystemX.Product.CP.RecoveryTool
{
partial class Form1
{
/// <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.panel1 = new System.Windows.Forms.Panel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.gridDB = new System.Windows.Forms.DataGridView();
this.colIndex = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colDb = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colRemove = new System.Windows.Forms.DataGridViewButtonColumn();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.textRecoveryName = new System.Windows.Forms.TextBox();
this.lbAttachResult = new System.Windows.Forms.Label();
this.btnAttach = new System.Windows.Forms.Button();
this.ledLdf = new System.Windows.Forms.Panel();
this.ledMdf = new System.Windows.Forms.Panel();
this.label2 = new System.Windows.Forms.Label();
this.textLdf = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.textMdf = new System.Windows.Forms.TextBox();
this.btnSelectDb = new System.Windows.Forms.Button();
this.btnRefresh = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gridDB)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.Controls.Add(this.groupBox2);
this.panel1.Controls.Add(this.groupBox1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(651, 547);
this.panel1.TabIndex = 0;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.btnRefresh);
this.groupBox2.Controls.Add(this.gridDB);
this.groupBox2.Location = new System.Drawing.Point(12, 181);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(627, 354);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Management";
//
// gridDB
//
this.gridDB.AllowUserToAddRows = false;
this.gridDB.AllowUserToDeleteRows = false;
this.gridDB.AllowUserToResizeRows = false;
this.gridDB.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gridDB.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.colIndex,
this.colDb,
this.colRemove});
this.gridDB.Location = new System.Drawing.Point(17, 42);
this.gridDB.Name = "gridDB";
this.gridDB.RowTemplate.Height = 23;
this.gridDB.Size = new System.Drawing.Size(590, 298);
this.gridDB.TabIndex = 0;
this.gridDB.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridDB_CellContentClick);
//
// colIndex
//
this.colIndex.Frozen = true;
this.colIndex.HeaderText = "Index";
this.colIndex.Name = "colIndex";
this.colIndex.ReadOnly = true;
this.colIndex.Width = 50;
//
// colDb
//
this.colDb.Frozen = true;
this.colDb.HeaderText = "DataBase";
this.colDb.Name = "colDb";
this.colDb.ReadOnly = true;
this.colDb.Width = 300;
//
// colRemove
//
this.colRemove.Frozen = true;
this.colRemove.HeaderText = "Remove";
this.colRemove.Name = "colRemove";
this.colRemove.ReadOnly = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.textRecoveryName);
this.groupBox1.Controls.Add(this.lbAttachResult);
this.groupBox1.Controls.Add(this.btnAttach);
this.groupBox1.Controls.Add(this.ledLdf);
this.groupBox1.Controls.Add(this.ledMdf);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.textLdf);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.textMdf);
this.groupBox1.Controls.Add(this.btnSelectDb);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(627, 163);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Attach";
//
// label4
//
this.label4.AutoSize = true;
this.label4.ForeColor = System.Drawing.Color.DodgerBlue;
this.label4.Location = new System.Drawing.Point(543, 84);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(64, 12);
this.label4.TabIndex = 11;
this.label4.Text = "_Recovery";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(154, 84);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(96, 12);
this.label3.TabIndex = 10;
this.label3.Text = "Recovery Name";
//
// textRecoveryName
//
this.textRecoveryName.Location = new System.Drawing.Point(256, 78);
this.textRecoveryName.Name = "textRecoveryName";
this.textRecoveryName.Size = new System.Drawing.Size(286, 21);
this.textRecoveryName.TabIndex = 9;
//
// lbAttachResult
//
this.lbAttachResult.Location = new System.Drawing.Point(152, 133);
this.lbAttachResult.Name = "lbAttachResult";
this.lbAttachResult.Size = new System.Drawing.Size(469, 22);
this.lbAttachResult.TabIndex = 8;
this.lbAttachResult.Text = "result";
//
// btnAttach
//
this.btnAttach.Location = new System.Drawing.Point(154, 104);
this.btnAttach.Name = "btnAttach";
this.btnAttach.Size = new System.Drawing.Size(467, 23);
this.btnAttach.TabIndex = 7;
this.btnAttach.Text = "Attach to SqlServer";
this.btnAttach.UseVisualStyleBackColor = true;
this.btnAttach.Click += new System.EventHandler(this.btnAttach_Click);
//
// ledLdf
//
this.ledLdf.BackColor = System.Drawing.Color.White;
this.ledLdf.Location = new System.Drawing.Point(580, 52);
this.ledLdf.Name = "ledLdf";
this.ledLdf.Size = new System.Drawing.Size(41, 21);
this.ledLdf.TabIndex = 6;
//
// ledMdf
//
this.ledMdf.BackColor = System.Drawing.Color.White;
this.ledMdf.Location = new System.Drawing.Point(580, 25);
this.ledMdf.Name = "ledMdf";
this.ledMdf.Size = new System.Drawing.Size(41, 21);
this.ledMdf.TabIndex = 5;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(152, 57);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(27, 12);
this.label2.TabIndex = 4;
this.label2.Text = "LDF";
//
// textLdf
//
this.textLdf.Location = new System.Drawing.Point(195, 51);
this.textLdf.Name = "textLdf";
this.textLdf.Size = new System.Drawing.Size(379, 21);
this.textLdf.TabIndex = 3;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(152, 30);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(31, 12);
this.label1.TabIndex = 2;
this.label1.Text = "MDF";
//
// textMdf
//
this.textMdf.Location = new System.Drawing.Point(195, 24);
this.textMdf.Name = "textMdf";
this.textMdf.Size = new System.Drawing.Size(379, 21);
this.textMdf.TabIndex = 1;
//
// btnSelectDb
//
this.btnSelectDb.Location = new System.Drawing.Point(17, 25);
this.btnSelectDb.Name = "btnSelectDb";
this.btnSelectDb.Size = new System.Drawing.Size(122, 23);
this.btnSelectDb.TabIndex = 0;
this.btnSelectDb.Text = "Select DB";
this.btnSelectDb.UseVisualStyleBackColor = true;
this.btnSelectDb.Click += new System.EventHandler(this.btnSelectDb_Click);
//
// btnRefresh
//
this.btnRefresh.Location = new System.Drawing.Point(485, 13);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(122, 23);
this.btnRefresh.TabIndex = 1;
this.btnRefresh.Text = "Refresh";
this.btnRefresh.UseVisualStyleBackColor = true;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(651, 547);
this.Controls.Add(this.panel1);
this.Name = "Form1";
this.Text = "DB Management Tool";
this.panel1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.gridDB)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnSelectDb;
private System.Windows.Forms.TextBox textMdf;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textLdf;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Panel ledMdf;
private System.Windows.Forms.Panel ledLdf;
private System.Windows.Forms.Button btnAttach;
private System.Windows.Forms.Label lbAttachResult;
private System.Windows.Forms.DataGridView gridDB;
private System.Windows.Forms.DataGridViewTextBoxColumn colIndex;
private System.Windows.Forms.DataGridViewTextBoxColumn colDb;
private System.Windows.Forms.DataGridViewButtonColumn colRemove;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textRecoveryName;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button btnRefresh;
}
}