namespace EntityBuilder { partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.selectedRow = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.btnGen = new System.Windows.Forms.Button(); this.dataGridView2 = new System.Windows.Forms.DataGridView(); this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.txtCode = new System.Windows.Forms.TextBox(); this.txtPath = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.txtSyntax = new Kevin.SyntaxTextBox.SyntaxTextBox(); this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); this.allcheck = new System.Windows.Forms.CheckBox(); this.btnGen_Helper = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); this.SuspendLayout(); // // dataGridView1 // this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.selectedRow, this.Column2}); this.dataGridView1.Location = new System.Drawing.Point(14, 68); this.dataGridView1.MultiSelect = false; this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.dataGridView1.RowHeadersWidth = 30; this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.dataGridView1.RowTemplate.Height = 23; this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect; this.dataGridView1.Size = new System.Drawing.Size(329, 549); this.dataGridView1.TabIndex = 10; this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick); // // selectedRow // this.selectedRow.HeaderText = ""; this.selectedRow.Name = "selectedRow"; this.selectedRow.Width = 45; // // Column2 // this.Column2.DataPropertyName = "Name"; this.Column2.FillWeight = 110F; this.Column2.HeaderText = "表名称"; this.Column2.Name = "Column2"; this.Column2.Width = 230; // // btnGen // this.btnGen.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.btnGen.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0))))); this.btnGen.Location = new System.Drawing.Point(16, 637); this.btnGen.Name = "btnGen"; this.btnGen.Size = new System.Drawing.Size(373, 61); this.btnGen.TabIndex = 13; this.btnGen.Text = "生成代码类文件"; this.btnGen.UseVisualStyleBackColor = true; this.btnGen.Click += new System.EventHandler(this.btnGen_Click); // // dataGridView2 // this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.dataGridViewTextBoxColumn2, this.dataGridViewTextBoxColumn6, this.dataGridViewTextBoxColumn3, this.dataGridViewTextBoxColumn4, this.dataGridViewTextBoxColumn5}); this.dataGridView2.Location = new System.Drawing.Point(343, 68); this.dataGridView2.MultiSelect = false; this.dataGridView2.Name = "dataGridView2"; this.dataGridView2.ReadOnly = true; this.dataGridView2.RowTemplate.Height = 23; this.dataGridView2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dataGridView2.Size = new System.Drawing.Size(477, 549); this.dataGridView2.TabIndex = 14; // // dataGridViewTextBoxColumn2 // this.dataGridViewTextBoxColumn2.DataPropertyName = "DbColumnName"; dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle1; this.dataGridViewTextBoxColumn2.HeaderText = "字段名"; this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; this.dataGridViewTextBoxColumn2.ReadOnly = true; this.dataGridViewTextBoxColumn2.Width = 150; // // dataGridViewTextBoxColumn6 // this.dataGridViewTextBoxColumn6.DataPropertyName = "DataType"; dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle2; this.dataGridViewTextBoxColumn6.HeaderText = "类型"; this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6"; this.dataGridViewTextBoxColumn6.ReadOnly = true; this.dataGridViewTextBoxColumn6.Width = 70; // // dataGridViewTextBoxColumn3 // this.dataGridViewTextBoxColumn3.DataPropertyName = "IsPrimarykey"; dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle3; this.dataGridViewTextBoxColumn3.HeaderText = "是否主键"; this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; this.dataGridViewTextBoxColumn3.ReadOnly = true; this.dataGridViewTextBoxColumn3.Width = 70; // // dataGridViewTextBoxColumn4 // this.dataGridViewTextBoxColumn4.DataPropertyName = "IsIdentity"; dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle4; this.dataGridViewTextBoxColumn4.HeaderText = "是否标识"; this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; this.dataGridViewTextBoxColumn4.ReadOnly = true; this.dataGridViewTextBoxColumn4.Width = 70; // // dataGridViewTextBoxColumn5 // this.dataGridViewTextBoxColumn5.DataPropertyName = "IsNullable"; dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle5; this.dataGridViewTextBoxColumn5.HeaderText = "允许为空"; this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5"; this.dataGridViewTextBoxColumn5.ReadOnly = true; this.dataGridViewTextBoxColumn5.Width = 70; // // txtCode // this.txtCode.Location = new System.Drawing.Point(0, 0); this.txtCode.Name = "txtCode"; this.txtCode.Size = new System.Drawing.Size(100, 23); this.txtCode.TabIndex = 0; // // txtPath // this.txtPath.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.txtPath.ForeColor = System.Drawing.Color.Blue; this.txtPath.Location = new System.Drawing.Point(197, 19); this.txtPath.Name = "txtPath"; this.txtPath.Size = new System.Drawing.Size(503, 32); this.txtPath.TabIndex = 19; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.label1.Location = new System.Drawing.Point(-2, 22); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(202, 25); this.label1.TabIndex = 20; this.label1.Text = "生成类文件保存路径:"; // // txtSyntax // this.txtSyntax.AcceptsTab = true; this.txtSyntax.CaseSensitive = false; this.txtSyntax.ConfigFile = "csharp.xml"; this.txtSyntax.FilterAutoComplete = true; this.txtSyntax.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.txtSyntax.Location = new System.Drawing.Point(827, 19); this.txtSyntax.MaxUndoRedoSteps = 50; this.txtSyntax.Name = "txtSyntax"; this.txtSyntax.Size = new System.Drawing.Size(609, 678); this.txtSyntax.TabIndex = 0; this.txtSyntax.Text = ""; this.txtSyntax.WordWrap = false; // // allcheck // this.allcheck.AutoSize = true; this.allcheck.Location = new System.Drawing.Point(724, 42); this.allcheck.Name = "allcheck"; this.allcheck.Size = new System.Drawing.Size(55, 18); this.allcheck.TabIndex = 21; this.allcheck.Text = "全選"; this.allcheck.UseVisualStyleBackColor = true; this.allcheck.CheckedChanged += new System.EventHandler(this.allcheck_CheckedChanged); // // btnGen_Helper // this.btnGen_Helper.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.btnGen_Helper.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0))))); this.btnGen_Helper.Location = new System.Drawing.Point(413, 637); this.btnGen_Helper.Name = "btnGen_Helper"; this.btnGen_Helper.Size = new System.Drawing.Size(373, 61); this.btnGen_Helper.TabIndex = 22; this.btnGen_Helper.Text = "生成代码輔助类文件"; this.btnGen_Helper.UseVisualStyleBackColor = true; this.btnGen_Helper.Click += new System.EventHandler(this.btnGen_Helper_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1442, 712); this.Controls.Add(this.btnGen_Helper); this.Controls.Add(this.allcheck); this.Controls.Add(this.label1); this.Controls.Add(this.txtPath); this.Controls.Add(this.txtSyntax); this.Controls.Add(this.dataGridView2); this.Controls.Add(this.btnGen); this.Controls.Add(this.dataGridView1); this.Name = "Form1"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.Button btnGen; private System.Windows.Forms.DataGridView dataGridView2; private System.Windows.Forms.TextBox txtCode; private System.Windows.Forms.TextBox txtPath; private System.Windows.Forms.Label label1; private System.Windows.Forms.BindingSource bindingSource1; private System.Windows.Forms.CheckBox allcheck; private System.Windows.Forms.Button btnGen_Helper; private System.Windows.Forms.DataGridViewCheckBoxColumn selectedRow; private System.Windows.Forms.DataGridViewTextBoxColumn Column2; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5; } }