📄 frmtbclasscreater.designer.cs
字号:
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(291, 319);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(29, 12);
this.label8.TabIndex = 14;
this.label8.Text = "字段";
//
// lstKey
//
this.lstKey.FormattingEnabled = true;
this.lstKey.ItemHeight = 12;
this.lstKey.Location = new System.Drawing.Point(293, 334);
this.lstKey.Name = "lstKey";
this.lstKey.Size = new System.Drawing.Size(262, 304);
this.lstKey.TabIndex = 13;
//
// cmdRemove
//
this.cmdRemove.Location = new System.Drawing.Point(561, 163);
this.cmdRemove.Name = "cmdRemove";
this.cmdRemove.Size = new System.Drawing.Size(56, 27);
this.cmdRemove.TabIndex = 15;
this.cmdRemove.Text = "移除";
this.cmdRemove.UseVisualStyleBackColor = true;
this.cmdRemove.Click += new System.EventHandler(this.cmdRemove_Click);
//
// cmdLink
//
this.cmdLink.Location = new System.Drawing.Point(563, 25);
this.cmdLink.Name = "cmdLink";
this.cmdLink.Size = new System.Drawing.Size(56, 27);
this.cmdLink.TabIndex = 16;
this.cmdLink.Text = "连接";
this.cmdLink.UseVisualStyleBackColor = true;
this.cmdLink.Click += new System.EventHandler(this.cmdLink_Click);
//
// cmdCreate
//
this.cmdCreate.Location = new System.Drawing.Point(561, 196);
this.cmdCreate.Name = "cmdCreate";
this.cmdCreate.Size = new System.Drawing.Size(56, 27);
this.cmdCreate.TabIndex = 17;
this.cmdCreate.Text = "生成";
this.cmdCreate.UseVisualStyleBackColor = true;
this.cmdCreate.Click += new System.EventHandler(this.cmdCreate_Click);
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(9, 99);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(53, 12);
this.label9.TabIndex = 18;
this.label9.Text = "生成路径";
//
// txtPath
//
this.txtPath.BackColor = System.Drawing.Color.WhiteSmoke;
this.txtPath.Location = new System.Drawing.Point(68, 96);
this.txtPath.Multiline = true;
this.txtPath.Name = "txtPath";
this.txtPath.ReadOnly = true;
this.txtPath.Size = new System.Drawing.Size(487, 36);
this.txtPath.TabIndex = 19;
//
// cmdSel
//
this.cmdSel.Location = new System.Drawing.Point(561, 334);
this.cmdSel.Name = "cmdSel";
this.cmdSel.Size = new System.Drawing.Size(56, 27);
this.cmdSel.TabIndex = 20;
this.cmdSel.Text = "选入";
this.cmdSel.UseVisualStyleBackColor = true;
this.cmdSel.Click += new System.EventHandler(this.cmdSel_Click);
//
// cmdBrowse
//
this.cmdBrowse.Location = new System.Drawing.Point(561, 96);
this.cmdBrowse.Name = "cmdBrowse";
this.cmdBrowse.Size = new System.Drawing.Size(56, 27);
this.cmdBrowse.TabIndex = 21;
this.cmdBrowse.Text = "浏览";
this.cmdBrowse.UseVisualStyleBackColor = true;
this.cmdBrowse.Click += new System.EventHandler(this.cmdBrowse_Click);
//
// 表名
//
this.表名.HeaderText = "表名";
this.表名.Name = "表名";
this.表名.ReadOnly = true;
this.表名.Width = 300;
//
// 主键
//
this.主键.HeaderText = "主键";
this.主键.Name = "主键";
this.主键.ReadOnly = true;
this.主键.Width = 200;
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(9, 148);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(53, 12);
this.label10.TabIndex = 22;
this.label10.Text = "命名空间";
//
// txtNameSpace
//
this.txtNameSpace.Location = new System.Drawing.Point(68, 145);
this.txtNameSpace.Name = "txtNameSpace";
this.txtNameSpace.Size = new System.Drawing.Size(487, 21);
this.txtNameSpace.TabIndex = 23;
//
// frmTBClassCreater
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(629, 656);
this.Controls.Add(this.txtNameSpace);
this.Controls.Add(this.label10);
this.Controls.Add(this.cmdBrowse);
this.Controls.Add(this.cmdSel);
this.Controls.Add(this.txtPath);
this.Controls.Add(this.label9);
this.Controls.Add(this.cmdCreate);
this.Controls.Add(this.cmdLink);
this.Controls.Add(this.cmdRemove);
this.Controls.Add(this.label8);
this.Controls.Add(this.lstKey);
this.Controls.Add(this.label7);
this.Controls.Add(this.lstTable);
this.Controls.Add(this.label6);
this.Controls.Add(this.dtgTables);
this.Controls.Add(this.txtPW);
this.Controls.Add(this.label5);
this.Controls.Add(this.txtUser);
this.Controls.Add(this.label4);
this.Controls.Add(this.txtDB);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtServer);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "frmTBClassCreater";
this.Text = "数据表访问类生成程序";
this.Load += new System.EventHandler(this.frmTBClassCreater_Load);
((System.ComponentModel.ISupportInitialize)(this.dtgTables)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtServer;
private System.Windows.Forms.TextBox txtDB;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtUser;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtPW;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.DataGridView dtgTables;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.ListBox lstTable;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.ListBox lstKey;
private System.Windows.Forms.Button cmdRemove;
private System.Windows.Forms.Button cmdLink;
private System.Windows.Forms.Button cmdCreate;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.TextBox txtPath;
private System.Windows.Forms.Button cmdSel;
private System.Windows.Forms.Button cmdBrowse;
private System.Windows.Forms.FolderBrowserDialog fbdOpen;
private System.Windows.Forms.DataGridViewTextBoxColumn 表名;
private System.Windows.Forms.DataGridViewTextBoxColumn 主键;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.TextBox txtNameSpace;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -