📄 frmtbclasscreater.designer.cs
字号:
namespace TableClassCreater
{
partial class frmTBClassCreater
{
/// <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 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtServer = new System.Windows.Forms.TextBox();
this.txtDB = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtUser = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtPW = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.dtgTables = new System.Windows.Forms.DataGridView();
this.label6 = new System.Windows.Forms.Label();
this.lstTable = new System.Windows.Forms.ListBox();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.lstKey = new System.Windows.Forms.ListBox();
this.cmdRemove = new System.Windows.Forms.Button();
this.cmdLink = new System.Windows.Forms.Button();
this.cmdCreate = new System.Windows.Forms.Button();
this.label9 = new System.Windows.Forms.Label();
this.txtPath = new System.Windows.Forms.TextBox();
this.cmdSel = new System.Windows.Forms.Button();
this.cmdBrowse = new System.Windows.Forms.Button();
this.fbdOpen = new System.Windows.Forms.FolderBrowserDialog();
this.表名 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.主键 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.label10 = new System.Windows.Forms.Label();
this.txtNameSpace = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.dtgTables)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 7);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 0;
this.label1.Text = "数据库连接";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(72, 35);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 1;
this.label2.Text = "服务器";
//
// txtServer
//
this.txtServer.Location = new System.Drawing.Point(119, 32);
this.txtServer.Name = "txtServer";
this.txtServer.Size = new System.Drawing.Size(140, 21);
this.txtServer.TabIndex = 2;
this.txtServer.Text = "23.36.2.203";
//
// txtDB
//
this.txtDB.Location = new System.Drawing.Point(337, 29);
this.txtDB.Name = "txtDB";
this.txtDB.Size = new System.Drawing.Size(140, 21);
this.txtDB.TabIndex = 4;
this.txtDB.Text = "yuanlinju";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(290, 32);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(41, 12);
this.label3.TabIndex = 3;
this.label3.Text = "数据库";
//
// txtUser
//
this.txtUser.Location = new System.Drawing.Point(119, 59);
this.txtUser.Name = "txtUser";
this.txtUser.Size = new System.Drawing.Size(140, 21);
this.txtUser.TabIndex = 6;
this.txtUser.Text = "sa";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(72, 62);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(41, 12);
this.label4.TabIndex = 5;
this.label4.Text = "用户名";
//
// txtPW
//
this.txtPW.Location = new System.Drawing.Point(337, 59);
this.txtPW.Name = "txtPW";
this.txtPW.PasswordChar = '*';
this.txtPW.Size = new System.Drawing.Size(140, 21);
this.txtPW.TabIndex = 8;
this.txtPW.Text = "My525Just";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(290, 62);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(29, 12);
this.label5.TabIndex = 7;
this.label5.Text = "密码";
//
// dtgTables
//
this.dtgTables.AllowUserToAddRows = false;
this.dtgTables.AllowUserToDeleteRows = false;
this.dtgTables.AllowUserToOrderColumns = true;
this.dtgTables.AllowUserToResizeRows = false;
dataGridViewCellStyle3.BackColor = System.Drawing.Color.MintCream;
this.dtgTables.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle3;
this.dtgTables.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dtgTables.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.表名,
this.主键});
this.dtgTables.Location = new System.Drawing.Point(30, 175);
this.dtgTables.Name = "dtgTables";
this.dtgTables.ReadOnly = true;
this.dtgTables.RowHeadersWidth = 20;
this.dtgTables.RowTemplate.Height = 23;
this.dtgTables.Size = new System.Drawing.Size(524, 141);
this.dtgTables.TabIndex = 9;
//
// label6
//
this.label6.Location = new System.Drawing.Point(9, 175);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(18, 103);
this.label6.TabIndex = 10;
this.label6.Text = "已选表与主键";
//
// lstTable
//
this.lstTable.FormattingEnabled = true;
this.lstTable.ItemHeight = 12;
this.lstTable.Location = new System.Drawing.Point(12, 334);
this.lstTable.Name = "lstTable";
this.lstTable.Size = new System.Drawing.Size(275, 304);
this.lstTable.Sorted = true;
this.lstTable.TabIndex = 11;
this.lstTable.SelectedIndexChanged += new System.EventHandler(this.lstTable_SelectedIndexChanged);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(10, 319);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(17, 12);
this.label7.TabIndex = 12;
this.label7.Text = "表";
//
// label8
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -