namespace XCoder
{
partial class FrmSchema
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.cbTables = new System.Windows.Forms.ComboBox();
this.cbSchemas = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.gv = new System.Windows.Forms.DataGridView();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gv)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.cbTables);
this.groupBox1.Controls.Add(this.cbSchemas);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(6, 5);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(770, 44);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(290, 20);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 12);
this.label1.TabIndex = 5;
this.label1.Text = "数据表架构:";
//
// cbTables
//
this.cbTables.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbTables.FormattingEnabled = true;
this.cbTables.Location = new System.Drawing.Point(373, 16);
this.cbTables.Name = "cbTables";
this.cbTables.Size = new System.Drawing.Size(168, 20);
this.cbTables.TabIndex = 4;
this.cbTables.SelectedIndexChanged += new System.EventHandler(this.cbTables_SelectedIndexChanged);
//
// cbSchemas
//
this.cbSchemas.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbSchemas.FormattingEnabled = true;
this.cbSchemas.Location = new System.Drawing.Point(81, 16);
this.cbSchemas.Name = "cbSchemas";
this.cbSchemas.Size = new System.Drawing.Size(179, 20);
this.cbSchemas.TabIndex = 3;
this.cbSchemas.SelectedIndexChanged += new System.EventHandler(this.cbTables_SelectedIndexChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(11, 20);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 2;
this.label2.Text = "数据架构:";
//
// gv
//
this.gv.AllowUserToAddRows = false;
this.gv.AllowUserToDeleteRows = false;
this.gv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gv.Location = new System.Drawing.Point(0, 55);
this.gv.Name = "gv";
this.gv.ReadOnly = true;
this.gv.RowTemplate.Height = 23;
this.gv.Size = new System.Drawing.Size(784, 378);
this.gv.TabIndex = 1;
//
// FrmSchema
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 433);
this.Controls.Add(this.gv);
this.Controls.Add(this.groupBox1);
this.Name = "FrmSchema";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "数据库架构信息管理器";
this.Load += new System.EventHandler(this.FrmSchema_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.gv)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.DataGridView gv;
private System.Windows.Forms.ComboBox cbSchemas;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox cbTables;
}
}
|