86 Star 362 Fork 122

wxd_tony1984/DevelopAssistant

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MainForm.Designer.cs 36.13 KB
一键复制 编辑 原始数据 按行查看 历史
wxdongtt2007 提交于 2024-05-07 17:22 +08:00 . 修改java 项目代码生成
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
namespace DevelopAssistant.AddIn.JavaProject
{
partial class MainForm
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.panel2 = new System.Windows.Forms.Panel();
this.label7 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtNameSpace = new ICSharpCode.WinFormsUI.Controls.NTextBox();
this.groupBox3 = new ICSharpCode.WinFormsUI.Controls.NGroupBox();
this.checkModel = new System.Windows.Forms.CheckBox();
this.checkDTO = new System.Windows.Forms.CheckBox();
this.checkMapper = new System.Windows.Forms.CheckBox();
this.checkDAO = new System.Windows.Forms.CheckBox();
this.checkIService = new System.Windows.Forms.CheckBox();
this.checkServiceImpl = new System.Windows.Forms.CheckBox();
this.checkController = new System.Windows.Forms.CheckBox();
this.label4 = new System.Windows.Forms.Label();
this.cbox_identity = new System.Windows.Forms.CheckBox();
this.txtModelpath = new ICSharpCode.WinFormsUI.Controls.NTextBox();
this.combTypes = new ICSharpCode.WinFormsUI.Controls.NComboBox();
this.label5 = new System.Windows.Forms.Label();
this.txtPKey = new ICSharpCode.WinFormsUI.Controls.NTextBox();
this.progressBar1 = new ICSharpCode.WinFormsUI.Controls.NProgressBar();
this.label6 = new System.Windows.Forms.Label();
this.listView1 = new ICSharpCode.WinFormsUI.Controls.NListView();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.groupBox1 = new ICSharpCode.WinFormsUI.Controls.NGroupBox();
this.txtTableName = new ICSharpCode.WinFormsUI.Controls.NTextBox();
this.label1 = new System.Windows.Forms.Label();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.txtOutMsg = new ICSharpCode.WinFormsUI.Controls.NTextBox();
this.panel1 = new ICSharpCode.WinFormsUI.Controls.NPanel();
this.lblStateMsg = new System.Windows.Forms.Label();
this.btnApplyOk = new ICSharpCode.WinFormsUI.Controls.NButton();
this.btnCancle = new ICSharpCode.WinFormsUI.Controls.NButton();
this.panel3 = new System.Windows.Forms.Panel();
this.panel4 = new System.Windows.Forms.Panel();
this.lblComment = new System.Windows.Forms.Label();
this.panel2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox1.SuspendLayout();
this.panel1.SuspendLayout();
this.panel3.SuspendLayout();
this.panel4.SuspendLayout();
this.SuspendLayout();
//
// panel2
//
this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel2.BackColor = System.Drawing.Color.Transparent;
this.panel2.Controls.Add(this.label7);
this.panel2.Controls.Add(this.label3);
this.panel2.Controls.Add(this.label2);
this.panel2.Controls.Add(this.txtNameSpace);
this.panel2.Controls.Add(this.groupBox3);
this.panel2.Controls.Add(this.label4);
this.panel2.Controls.Add(this.cbox_identity);
this.panel2.Controls.Add(this.txtModelpath);
this.panel2.Controls.Add(this.combTypes);
this.panel2.Controls.Add(this.label5);
this.panel2.Controls.Add(this.txtPKey);
this.panel2.Location = new System.Drawing.Point(11, 398);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(732, 125);
this.panel2.TabIndex = 38;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label7.AutoSize = true;
this.label7.BackColor = System.Drawing.Color.Transparent;
this.label7.Location = new System.Drawing.Point(3, 11);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(134, 18);
this.label7.TabIndex = 21;
this.label7.Text = "顶级命名空间:";
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Location = new System.Drawing.Point(361, 11);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(62, 18);
this.label3.TabIndex = 22;
this.label3.Text = "主键:";
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Location = new System.Drawing.Point(9, 94);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(116, 18);
this.label2.TabIndex = 33;
this.label2.Text = "生成的类型:";
//
// txtNameSpace
//
this.txtNameSpace.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtNameSpace.BackColor = System.Drawing.Color.White;
this.txtNameSpace.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtNameSpace.ForeColor = System.Drawing.SystemColors.WindowText;
this.txtNameSpace.FousedColor = System.Drawing.Color.Orange;
this.txtNameSpace.Icon = null;
this.txtNameSpace.IconLayout = ICSharpCode.WinFormsUI.Controls.IconLayout.Left;
this.txtNameSpace.IsButtonTextBox = false;
this.txtNameSpace.IsClearTextBox = false;
this.txtNameSpace.IsPasswordTextBox = false;
this.txtNameSpace.Location = new System.Drawing.Point(98, 6);
this.txtNameSpace.MaxLength = 32767;
this.txtNameSpace.Multiline = false;
this.txtNameSpace.Name = "txtNameSpace";
this.txtNameSpace.PasswordChar = '\0';
this.txtNameSpace.Placeholder = null;
this.txtNameSpace.ReadOnly = false;
this.txtNameSpace.Size = new System.Drawing.Size(217, 24);
this.txtNameSpace.TabIndex = 23;
this.txtNameSpace.UseSystemPasswordChar = false;
this.txtNameSpace.XBackColor = System.Drawing.Color.White;
this.txtNameSpace.XDisableColor = System.Drawing.Color.Empty;
this.txtNameSpace.XForeColor = System.Drawing.SystemColors.WindowText;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.groupBox3.BackColor = System.Drawing.Color.Transparent;
this.groupBox3.BorderColor = System.Drawing.SystemColors.ControlDark;
this.groupBox3.BorderStyle = ICSharpCode.WinFormsUI.Controls.NBorderStyle.Top;
this.groupBox3.BottomBlackColor = System.Drawing.Color.Empty;
this.groupBox3.Controls.Add(this.checkModel);
this.groupBox3.Controls.Add(this.checkDTO);
this.groupBox3.Controls.Add(this.checkMapper);
this.groupBox3.Controls.Add(this.checkDAO);
this.groupBox3.Controls.Add(this.checkIService);
this.groupBox3.Controls.Add(this.checkServiceImpl);
this.groupBox3.Controls.Add(this.checkController);
this.groupBox3.GridLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(189)))));
this.groupBox3.Location = new System.Drawing.Point(98, 79);
this.groupBox3.MarginWidth = 0;
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(639, 39);
this.groupBox3.TabIndex = 32;
this.groupBox3.TabStop = false;
this.groupBox3.Title = "";
this.groupBox3.TopBlackColor = System.Drawing.Color.Empty;
//
// checkModel
//
this.checkModel.AutoSize = true;
this.checkModel.Location = new System.Drawing.Point(7, 13);
this.checkModel.Name = "checkModel";
this.checkModel.Size = new System.Drawing.Size(88, 22);
this.checkModel.TabIndex = 4;
this.checkModel.Text = "Entity";
this.checkModel.UseVisualStyleBackColor = true;
//
// checkDTO
//
this.checkDTO.AutoSize = true;
this.checkDTO.Location = new System.Drawing.Point(87, 13);
this.checkDTO.Name = "checkDTO";
this.checkDTO.Size = new System.Drawing.Size(61, 22);
this.checkDTO.TabIndex = 5;
this.checkDTO.Text = "DTO";
this.checkDTO.UseVisualStyleBackColor = true;
//
// checkMapper
//
this.checkMapper.AutoSize = true;
this.checkMapper.Location = new System.Drawing.Point(155, 13);
this.checkMapper.Name = "checkMapper";
this.checkMapper.Size = new System.Drawing.Size(88, 22);
this.checkMapper.TabIndex = 6;
this.checkMapper.Text = "Mapper";
this.checkMapper.UseVisualStyleBackColor = true;
//
// checkDAO
//
this.checkDAO.AutoSize = true;
this.checkDAO.Location = new System.Drawing.Point(232, 13);
this.checkDAO.Name = "checkDAO";
this.checkDAO.Size = new System.Drawing.Size(61, 22);
this.checkDAO.TabIndex = 7;
this.checkDAO.Text = "DAO";
this.checkDAO.UseVisualStyleBackColor = true;
//
// checkIService
//
this.checkIService.AutoSize = true;
this.checkIService.Location = new System.Drawing.Point(299, 13);
this.checkIService.Name = "checkIService";
this.checkIService.Size = new System.Drawing.Size(106, 22);
this.checkIService.TabIndex = 8;
this.checkIService.Text = "IService";
this.checkIService.UseVisualStyleBackColor = true;
//
// checkServiceImpl
//
this.checkServiceImpl.AutoSize = true;
this.checkServiceImpl.Location = new System.Drawing.Point(389, 13);
this.checkServiceImpl.Name = "checkServiceImpl";
this.checkServiceImpl.Size = new System.Drawing.Size(133, 22);
this.checkServiceImpl.TabIndex = 9;
this.checkServiceImpl.Text = "ServiceImpl";
this.checkServiceImpl.UseVisualStyleBackColor = true;
//
// checkController
//
this.checkController.AutoSize = true;
this.checkController.Location = new System.Drawing.Point(501, 13);
this.checkController.Name = "checkController";
this.checkController.Size = new System.Drawing.Size(124, 22);
this.checkController.TabIndex = 10;
this.checkController.Text = "Controller";
this.checkController.UseVisualStyleBackColor = true;
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Transparent;
this.label4.Location = new System.Drawing.Point(3, 50);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(134, 18);
this.label4.TabIndex = 24;
this.label4.Text = "二级命名空间:";
//
// cbox_identity
//
this.cbox_identity.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbox_identity.AutoSize = true;
this.cbox_identity.Location = new System.Drawing.Point(558, 4);
this.cbox_identity.Name = "cbox_identity";
this.cbox_identity.Size = new System.Drawing.Size(124, 22);
this.cbox_identity.TabIndex = 31;
this.cbox_identity.Text = "标识为自增";
this.cbox_identity.UseVisualStyleBackColor = true;
//
// txtModelpath
//
this.txtModelpath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtModelpath.BackColor = System.Drawing.Color.White;
this.txtModelpath.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtModelpath.ForeColor = System.Drawing.SystemColors.WindowText;
this.txtModelpath.FousedColor = System.Drawing.Color.Orange;
this.txtModelpath.Icon = null;
this.txtModelpath.IconLayout = ICSharpCode.WinFormsUI.Controls.IconLayout.Left;
this.txtModelpath.IsButtonTextBox = false;
this.txtModelpath.IsClearTextBox = false;
this.txtModelpath.IsPasswordTextBox = false;
this.txtModelpath.Location = new System.Drawing.Point(98, 45);
this.txtModelpath.MaxLength = 32767;
this.txtModelpath.Multiline = false;
this.txtModelpath.Name = "txtModelpath";
this.txtModelpath.PasswordChar = '\0';
this.txtModelpath.Placeholder = null;
this.txtModelpath.ReadOnly = false;
this.txtModelpath.Size = new System.Drawing.Size(217, 24);
this.txtModelpath.TabIndex = 25;
this.txtModelpath.UseSystemPasswordChar = false;
this.txtModelpath.XBackColor = System.Drawing.Color.White;
this.txtModelpath.XDisableColor = System.Drawing.Color.Empty;
this.txtModelpath.XForeColor = System.Drawing.SystemColors.WindowText;
//
// combTypes
//
this.combTypes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.combTypes.BorderColor = System.Drawing.SystemColors.ControlDark;
this.combTypes.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.combTypes.DropDownButtonWidth = 20;
this.combTypes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.combTypes.DropDownWidth = 0;
this.combTypes.Font = new System.Drawing.Font("宋体", 9F);
this.combTypes.FormattingEnabled = true;
this.combTypes.ItemHeight = 18;
this.combTypes.ItemIcon = null;
this.combTypes.Location = new System.Drawing.Point(420, 45);
this.combTypes.Name = "combTypes";
this.combTypes.SelectedIndex = -1;
this.combTypes.SelectedItem = null;
this.combTypes.Size = new System.Drawing.Size(196, 22);
this.combTypes.TabIndex = 26;
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label5.AutoSize = true;
this.label5.BackColor = System.Drawing.Color.Transparent;
this.label5.Location = new System.Drawing.Point(361, 50);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(62, 18);
this.label5.TabIndex = 27;
this.label5.Text = "类型:";
//
// txtPKey
//
this.txtPKey.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtPKey.BackColor = System.Drawing.Color.White;
this.txtPKey.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtPKey.ForeColor = System.Drawing.SystemColors.WindowText;
this.txtPKey.FousedColor = System.Drawing.Color.Orange;
this.txtPKey.Icon = null;
this.txtPKey.IconLayout = ICSharpCode.WinFormsUI.Controls.IconLayout.Left;
this.txtPKey.IsButtonTextBox = false;
this.txtPKey.IsClearTextBox = false;
this.txtPKey.IsPasswordTextBox = false;
this.txtPKey.Location = new System.Drawing.Point(420, 6);
this.txtPKey.MaxLength = 32767;
this.txtPKey.Multiline = false;
this.txtPKey.Name = "txtPKey";
this.txtPKey.PasswordChar = '\0';
this.txtPKey.Placeholder = null;
this.txtPKey.ReadOnly = false;
this.txtPKey.Size = new System.Drawing.Size(121, 24);
this.txtPKey.TabIndex = 28;
this.txtPKey.UseSystemPasswordChar = false;
this.txtPKey.XBackColor = System.Drawing.Color.White;
this.txtPKey.XDisableColor = System.Drawing.Color.Empty;
this.txtPKey.XForeColor = System.Drawing.SystemColors.WindowText;
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.progressBar1.BaseColor = System.Drawing.Color.Empty;
this.progressBar1.FaceColor = System.Drawing.Color.FromArgb(((int)(((byte)(86)))), ((int)(((byte)(176)))), ((int)(((byte)(227)))));
this.progressBar1.LinearBrush = false;
this.progressBar1.Location = new System.Drawing.Point(63, 17);
this.progressBar1.Maximum = 100;
this.progressBar1.Minimum = 0;
this.progressBar1.Name = "progressBar1";
this.progressBar1.ShowValue = false;
this.progressBar1.Size = new System.Drawing.Size(222, 13);
this.progressBar1.TabIndex = 30;
this.progressBar1.Value = 0;
//
// label6
//
this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label6.AutoSize = true;
this.label6.BackColor = System.Drawing.Color.Transparent;
this.label6.Location = new System.Drawing.Point(4, 17);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(62, 18);
this.label6.TabIndex = 29;
this.label6.Text = "进度:";
//
// listView1
//
this.listView1.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.listView1.BackColor = System.Drawing.SystemColors.Window;
this.listView1.ColumnHeaderHeight = 30;
this.listView1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.listView1.GridLines = true;
this.listView1.ItemHeight = 28;
this.listView1.LabelEdit = true;
this.listView1.LargeImageList = null;
this.listView1.Location = new System.Drawing.Point(11, 66);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(732, 326);
this.listView1.StateImageList = this.imageList1;
this.listView1.TabIndex = 37;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "PKey.png");
this.imageList1.Images.SetKeyName(1, "text_24px.png");
this.imageList1.Images.SetKeyName(2, "table.png");
this.imageList1.Images.SetKeyName(3, "pk.gif");
//
// 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.BackColor = System.Drawing.Color.Transparent;
this.groupBox1.BorderColor = System.Drawing.SystemColors.ControlDark;
this.groupBox1.BorderStyle = ICSharpCode.WinFormsUI.Controls.NBorderStyle.Top;
this.groupBox1.BottomBlackColor = System.Drawing.Color.Empty;
this.groupBox1.Controls.Add(this.txtTableName);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.GridLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(189)))));
this.groupBox1.Location = new System.Drawing.Point(11, 5);
this.groupBox1.MarginWidth = 0;
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(732, 54);
this.groupBox1.TabIndex = 36;
this.groupBox1.TabStop = false;
this.groupBox1.Title = "";
this.groupBox1.TopBlackColor = System.Drawing.Color.Empty;
//
// txtTableName
//
this.txtTableName.BackColor = System.Drawing.Color.White;
this.txtTableName.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtTableName.ForeColor = System.Drawing.SystemColors.WindowText;
this.txtTableName.FousedColor = System.Drawing.Color.Orange;
this.txtTableName.Icon = null;
this.txtTableName.IconLayout = ICSharpCode.WinFormsUI.Controls.IconLayout.Left;
this.txtTableName.IsButtonTextBox = false;
this.txtTableName.IsClearTextBox = false;
this.txtTableName.IsPasswordTextBox = false;
this.txtTableName.Location = new System.Drawing.Point(72, 17);
this.txtTableName.MaxLength = 32767;
this.txtTableName.Multiline = false;
this.txtTableName.Name = "txtTableName";
this.txtTableName.PasswordChar = '\0';
this.txtTableName.Placeholder = null;
this.txtTableName.ReadOnly = false;
this.txtTableName.Size = new System.Drawing.Size(224, 24);
this.txtTableName.TabIndex = 6;
this.txtTableName.UseSystemPasswordChar = false;
this.txtTableName.XBackColor = System.Drawing.Color.White;
this.txtTableName.XDisableColor = System.Drawing.Color.Empty;
this.txtTableName.XForeColor = System.Drawing.SystemColors.WindowText;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(17, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(62, 18);
this.label1.TabIndex = 0;
this.label1.Text = "表名:";
//
// checkBox2
//
this.checkBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.checkBox2.AutoSize = true;
this.checkBox2.Checked = true;
this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox2.Location = new System.Drawing.Point(587, 24);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(142, 22);
this.checkBox2.TabIndex = 32;
this.checkBox2.Text = "下划线转驼峰";
this.checkBox2.UseVisualStyleBackColor = true;
//
// txtOutMsg
//
this.txtOutMsg.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtOutMsg.BackColor = System.Drawing.Color.White;
this.txtOutMsg.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtOutMsg.ForeColor = System.Drawing.SystemColors.WindowText;
this.txtOutMsg.FousedColor = System.Drawing.Color.Orange;
this.txtOutMsg.Icon = null;
this.txtOutMsg.IconLayout = ICSharpCode.WinFormsUI.Controls.IconLayout.Left;
this.txtOutMsg.IsButtonTextBox = false;
this.txtOutMsg.IsClearTextBox = false;
this.txtOutMsg.IsPasswordTextBox = false;
this.txtOutMsg.Location = new System.Drawing.Point(11, 529);
this.txtOutMsg.MaxLength = 32767;
this.txtOutMsg.Multiline = true;
this.txtOutMsg.Name = "txtOutMsg";
this.txtOutMsg.PasswordChar = '\0';
this.txtOutMsg.Placeholder = null;
this.txtOutMsg.ReadOnly = false;
this.txtOutMsg.Size = new System.Drawing.Size(732, 72);
this.txtOutMsg.TabIndex = 40;
this.txtOutMsg.UseSystemPasswordChar = false;
this.txtOutMsg.XBackColor = System.Drawing.Color.White;
this.txtOutMsg.XDisableColor = System.Drawing.Color.Empty;
this.txtOutMsg.XForeColor = System.Drawing.SystemColors.WindowText;
//
// panel1
//
this.panel1.BorderColor = System.Drawing.SystemColors.ControlDark;
this.panel1.BorderStyle = ICSharpCode.WinFormsUI.Controls.NBorderStyle.Top;
this.panel1.BottomBlackColor = System.Drawing.Color.Empty;
this.panel1.Controls.Add(this.lblStateMsg);
this.panel1.Controls.Add(this.btnApplyOk);
this.panel1.Controls.Add(this.btnCancle);
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(6, 646);
this.panel1.MarginWidth = 0;
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(755, 60);
this.panel1.TabIndex = 39;
this.panel1.TopBlackColor = System.Drawing.Color.Empty;
//
// lblStateMsg
//
this.lblStateMsg.AutoSize = true;
this.lblStateMsg.BackColor = System.Drawing.Color.Transparent;
this.lblStateMsg.Location = new System.Drawing.Point(21, 26);
this.lblStateMsg.Name = "lblStateMsg";
this.lblStateMsg.Size = new System.Drawing.Size(80, 18);
this.lblStateMsg.TabIndex = 2;
this.lblStateMsg.Text = "生成成功";
//
// btnApplyOk
//
this.btnApplyOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnApplyOk.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.btnApplyOk.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.btnApplyOk.BorderColor = System.Drawing.SystemColors.ControlDark;
this.btnApplyOk.FouseBorderColor = System.Drawing.Color.Orange;
this.btnApplyOk.FouseColor = System.Drawing.Color.White;
this.btnApplyOk.Foused = false;
this.btnApplyOk.FouseTextColor = System.Drawing.Color.Black;
this.btnApplyOk.Icon = null;
this.btnApplyOk.IconLayoutType = ICSharpCode.WinFormsUI.Controls.IconLayoutType.MiddleLeft;
this.btnApplyOk.Location = new System.Drawing.Point(571, 16);
this.btnApplyOk.Name = "btnApplyOk";
this.btnApplyOk.Radius = 0;
this.btnApplyOk.Size = new System.Drawing.Size(75, 32);
this.btnApplyOk.TabIndex = 1;
this.btnApplyOk.Text = "生成";
this.btnApplyOk.UnableIcon = null;
this.btnApplyOk.UseVisualStyleBackColor = true;
this.btnApplyOk.Click += new System.EventHandler(this.btnApplyOk_Click);
//
// btnCancle
//
this.btnCancle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancle.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.btnCancle.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.btnCancle.BorderColor = System.Drawing.SystemColors.ControlDark;
this.btnCancle.FouseBorderColor = System.Drawing.Color.Orange;
this.btnCancle.FouseColor = System.Drawing.Color.White;
this.btnCancle.Foused = false;
this.btnCancle.FouseTextColor = System.Drawing.Color.Black;
this.btnCancle.Icon = null;
this.btnCancle.IconLayoutType = ICSharpCode.WinFormsUI.Controls.IconLayoutType.MiddleLeft;
this.btnCancle.Location = new System.Drawing.Point(662, 16);
this.btnCancle.Name = "btnCancle";
this.btnCancle.Radius = 0;
this.btnCancle.Size = new System.Drawing.Size(75, 32);
this.btnCancle.TabIndex = 0;
this.btnCancle.Text = "取消";
this.btnCancle.UnableIcon = null;
this.btnCancle.UseVisualStyleBackColor = true;
this.btnCancle.Click += new System.EventHandler(this.btnCancle_Click);
//
// panel3
//
this.panel3.Controls.Add(this.progressBar1);
this.panel3.Controls.Add(this.label6);
this.panel3.Location = new System.Drawing.Point(16, 590);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(305, 44);
this.panel3.TabIndex = 41;
//
// panel4
//
this.panel4.Controls.Add(this.lblComment);
this.panel4.Controls.Add(this.checkBox2);
this.panel4.Controls.Add(this.groupBox1);
this.panel4.Controls.Add(this.listView1);
this.panel4.Controls.Add(this.txtOutMsg);
this.panel4.Controls.Add(this.panel2);
this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel4.Location = new System.Drawing.Point(6, 34);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(755, 612);
this.panel4.TabIndex = 42;
//
// lblComment
//
this.lblComment.AutoSize = true;
this.lblComment.BackColor = System.Drawing.Color.Transparent;
this.lblComment.Location = new System.Drawing.Point(313, 28);
this.lblComment.Name = "lblComment";
this.lblComment.Size = new System.Drawing.Size(44, 18);
this.lblComment.TabIndex = 41;
this.lblComment.Text = "说明";
//
// MainForm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(767, 712);
this.Controls.Add(this.panel4);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel1);
this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Location = new System.Drawing.Point(0, 0);
this.Name = "MainForm";
this.Resizable = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MainForm";
this.Load += new System.EventHandler(this.MainForm_Load);
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.panel4.ResumeLayout(false);
this.panel4.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private ICSharpCode.WinFormsUI.Controls.NTextBox txtNameSpace;
private ICSharpCode.WinFormsUI.Controls.NGroupBox groupBox3;
private System.Windows.Forms.CheckBox checkServiceImpl;
private System.Windows.Forms.CheckBox checkIService;
private System.Windows.Forms.CheckBox checkMapper;
private System.Windows.Forms.CheckBox checkModel;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.CheckBox cbox_identity;
private ICSharpCode.WinFormsUI.Controls.NTextBox txtModelpath;
private ICSharpCode.WinFormsUI.Controls.NProgressBar progressBar1;
private ICSharpCode.WinFormsUI.Controls.NComboBox combTypes;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label5;
private ICSharpCode.WinFormsUI.Controls.NTextBox txtPKey;
private ICSharpCode.WinFormsUI.Controls.NListView listView1;
private ICSharpCode.WinFormsUI.Controls.NGroupBox groupBox1;
private ICSharpCode.WinFormsUI.Controls.NTextBox txtTableName;
private System.Windows.Forms.Label label1;
private ICSharpCode.WinFormsUI.Controls.NTextBox txtOutMsg;
private ICSharpCode.WinFormsUI.Controls.NPanel panel1;
private System.Windows.Forms.Label lblStateMsg;
private ICSharpCode.WinFormsUI.Controls.NButton btnApplyOk;
private ICSharpCode.WinFormsUI.Controls.NButton btnCancle;
private System.Windows.Forms.CheckBox checkDAO;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.CheckBox checkBox2;
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.CheckBox checkController;
private System.Windows.Forms.Panel panel4;
private System.Windows.Forms.Label lblComment;
private System.Windows.Forms.CheckBox checkDTO;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/sqlorm/DevelopAssistant.git
git@gitee.com:sqlorm/DevelopAssistant.git
sqlorm
DevelopAssistant
DevelopAssistant
master

搜索帮助