namespace ControlLib.inh.autosearcher_Res { partial class FrmPropertySet { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.tabCtrl = new System.Windows.Forms.TabControl(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.txtSql = new System.Windows.Forms.TextBox(); this.tabPage2 = new System.Windows.Forms.TabPage(); this.CboMatchNames = new System.Windows.Forms.ComboBox(); this.CboSearchMatchWay = new System.Windows.Forms.ComboBox(); this.label7 = new System.Windows.Forms.Label(); this.ChkAuto = new System.Windows.Forms.CheckBox(); this.label6 = new System.Windows.Forms.Label(); this.txtFormHeight = new System.Windows.Forms.TextBox(); this.label5 = new System.Windows.Forms.Label(); this.txtFormWidth = new System.Windows.Forms.TextBox(); this.ChkConvert = new System.Windows.Forms.CheckBox(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.CboKeyField = new System.Windows.Forms.ComboBox(); this.txtReturnMaxCount = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.CboReturnField = new System.Windows.Forms.ComboBox(); this.CboQueryField = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.tabPage3 = new System.Windows.Forms.TabPage(); this.btnUpdate = new System.Windows.Forms.Button(); this.chkShowColumn = new System.Windows.Forms.CheckBox(); this.label9 = new System.Windows.Forms.Label(); this.txtFieldShowWidth = new System.Windows.Forms.TextBox(); this.label8 = new System.Windows.Forms.Label(); this.txtFieldDescrip = new System.Windows.Forms.TextBox(); this.lblFieldName = new System.Windows.Forms.Label(); this.lstV = new System.Windows.Forms.ListView(); this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.btnOK = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.tabCtrl.SuspendLayout(); this.tabPage1.SuspendLayout(); this.tabPage2.SuspendLayout(); this.tabPage3.SuspendLayout(); this.SuspendLayout(); // // tabCtrl // this.tabCtrl.Controls.Add(this.tabPage1); this.tabCtrl.Controls.Add(this.tabPage2); this.tabCtrl.Controls.Add(this.tabPage3); this.tabCtrl.Location = new System.Drawing.Point(10, -1); this.tabCtrl.Name = "tabCtrl"; this.tabCtrl.SelectedIndex = 0; this.tabCtrl.Size = new System.Drawing.Size(561, 288); this.tabCtrl.TabIndex = 0; this.tabCtrl.SelectedIndexChanged += new System.EventHandler(this.tabCtrl_SelectedIndexChanged); // // tabPage1 // this.tabPage1.Controls.Add(this.txtSql); this.tabPage1.Location = new System.Drawing.Point(4, 22); this.tabPage1.Name = "tabPage1"; this.tabPage1.Padding = new System.Windows.Forms.Padding(3); this.tabPage1.Size = new System.Drawing.Size(553, 262); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "SQL语句"; this.tabPage1.UseVisualStyleBackColor = true; // // txtSql // this.txtSql.Location = new System.Drawing.Point(5, 5); this.txtSql.Multiline = true; this.txtSql.Name = "txtSql"; this.txtSql.Size = new System.Drawing.Size(542, 251); this.txtSql.TabIndex = 0; this.txtSql.TextChanged += new System.EventHandler(this.txtSql_TextChanged); // // tabPage2 // this.tabPage2.Controls.Add(this.CboMatchNames); this.tabPage2.Controls.Add(this.CboSearchMatchWay); this.tabPage2.Controls.Add(this.label7); this.tabPage2.Controls.Add(this.ChkAuto); this.tabPage2.Controls.Add(this.label6); this.tabPage2.Controls.Add(this.txtFormHeight); this.tabPage2.Controls.Add(this.label5); this.tabPage2.Controls.Add(this.txtFormWidth); this.tabPage2.Controls.Add(this.ChkConvert); this.tabPage2.Controls.Add(this.label4); this.tabPage2.Controls.Add(this.label3); this.tabPage2.Controls.Add(this.CboKeyField); this.tabPage2.Controls.Add(this.txtReturnMaxCount); this.tabPage2.Controls.Add(this.label2); this.tabPage2.Controls.Add(this.CboReturnField); this.tabPage2.Controls.Add(this.CboQueryField); this.tabPage2.Controls.Add(this.label1); this.tabPage2.Location = new System.Drawing.Point(4, 22); this.tabPage2.Name = "tabPage2"; this.tabPage2.Padding = new System.Windows.Forms.Padding(3); this.tabPage2.Size = new System.Drawing.Size(553, 262); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "基本设置"; this.tabPage2.UseVisualStyleBackColor = true; // // CboMatchNames // this.CboMatchNames.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CboMatchNames.Enabled = false; this.CboMatchNames.FormattingEnabled = true; this.CboMatchNames.Items.AddRange(new object[] { "全模糊匹配", "左边模糊匹配", "右边模糊匹配", "相等"}); this.CboMatchNames.Location = new System.Drawing.Point(324, 167); this.CboMatchNames.Name = "CboMatchNames"; this.CboMatchNames.Size = new System.Drawing.Size(176, 20); this.CboMatchNames.TabIndex = 16; // // CboSearchMatchWay // this.CboSearchMatchWay.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CboSearchMatchWay.FormattingEnabled = true; this.CboSearchMatchWay.Items.AddRange(new object[] { "swFuzzy", "swLeftFuzzy", "swRightFuzzy", "swFullEqual"}); this.CboSearchMatchWay.Location = new System.Drawing.Point(142, 167); this.CboSearchMatchWay.Name = "CboSearchMatchWay"; this.CboSearchMatchWay.Size = new System.Drawing.Size(121, 20); this.CboSearchMatchWay.TabIndex = 15; this.CboSearchMatchWay.SelectedIndexChanged += new System.EventHandler(this.CboSearchMatchWay_SelectedIndexChanged); // // label7 // this.label7.AutoSize = true; this.label7.Location = new System.Drawing.Point(24, 168); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(101, 12); this.label7.TabIndex = 14; this.label7.Text = "查询字段匹配模式"; // // ChkAuto // this.ChkAuto.AutoSize = true; this.ChkAuto.Location = new System.Drawing.Point(440, 223); this.ChkAuto.Name = "ChkAuto"; this.ChkAuto.Size = new System.Drawing.Size(96, 16); this.ChkAuto.TabIndex = 13; this.ChkAuto.Text = "自动调整高宽"; this.ChkAuto.UseVisualStyleBackColor = true; // // label6 // this.label6.AutoSize = true; this.label6.Location = new System.Drawing.Point(236, 224); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(113, 12); this.label6.TabIndex = 12; this.label6.Text = "结果集显示窗体高度"; // // txtFormHeight // this.txtFormHeight.Location = new System.Drawing.Point(355, 219); this.txtFormHeight.Name = "txtFormHeight"; this.txtFormHeight.Size = new System.Drawing.Size(79, 21); this.txtFormHeight.TabIndex = 11; this.txtFormHeight.Text = "230"; this.txtFormHeight.Validating += new System.ComponentModel.CancelEventHandler(this.txtFormHeight_Validating); // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(12, 222); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(113, 12); this.label5.TabIndex = 10; this.label5.Text = "结果集显示窗体宽度"; // // txtFormWidth // this.txtFormWidth.Location = new System.Drawing.Point(142, 219); this.txtFormWidth.Name = "txtFormWidth"; this.txtFormWidth.Size = new System.Drawing.Size(77, 21); this.txtFormWidth.TabIndex = 9; this.txtFormWidth.Text = "230"; this.txtFormWidth.Validating += new System.ComponentModel.CancelEventHandler(this.txtFormWidth_Validating); // // ChkConvert // this.ChkConvert.AutoSize = true; this.ChkConvert.Location = new System.Drawing.Point(142, 122); this.ChkConvert.Name = "ChkConvert"; this.ChkConvert.Size = new System.Drawing.Size(276, 16); this.ChkConvert.TabIndex = 8; this.ChkConvert.Text = "输入内容先转成每个字符拼音第一个字母的组合"; this.ChkConvert.UseVisualStyleBackColor = true; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(282, 77); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(125, 12); this.label4.TabIndex = 7; this.label4.Text = "结果集返回最大记录数"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(24, 74); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(101, 12); this.label3.TabIndex = 6; this.label3.Text = "结果集返回值字段"; // // CboKeyField // this.CboKeyField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CboKeyField.FormattingEnabled = true; this.CboKeyField.Location = new System.Drawing.Point(142, 26); this.CboKeyField.Name = "CboKeyField"; this.CboKeyField.Size = new System.Drawing.Size(121, 20); this.CboKeyField.TabIndex = 5; // // txtReturnMaxCount // this.txtReturnMaxCount.Location = new System.Drawing.Point(415, 73); this.txtReturnMaxCount.Name = "txtReturnMaxCount"; this.txtReturnMaxCount.Size = new System.Drawing.Size(118, 21); this.txtReturnMaxCount.TabIndex = 4; this.txtReturnMaxCount.Text = "2000"; this.txtReturnMaxCount.Validating += new System.ComponentModel.CancelEventHandler(this.txtReturnMaxCount_Validating); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(302, 29); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(101, 12); this.label2.TabIndex = 3; this.label2.Text = "结果集的查询字段"; // // CboReturnField // this.CboReturnField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CboReturnField.FormattingEnabled = true; this.CboReturnField.Location = new System.Drawing.Point(142, 71); this.CboReturnField.Name = "CboReturnField"; this.CboReturnField.Size = new System.Drawing.Size(121, 20); this.CboReturnField.TabIndex = 2; // // CboQueryField // this.CboQueryField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CboQueryField.FormattingEnabled = true; this.CboQueryField.Location = new System.Drawing.Point(412, 26); this.CboQueryField.Name = "CboQueryField"; this.CboQueryField.Size = new System.Drawing.Size(121, 20); this.CboQueryField.TabIndex = 1; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(24, 26); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(101, 12); this.label1.TabIndex = 0; this.label1.Text = "结果集的主键字段"; // // tabPage3 // this.tabPage3.Controls.Add(this.btnUpdate); this.tabPage3.Controls.Add(this.chkShowColumn); this.tabPage3.Controls.Add(this.label9); this.tabPage3.Controls.Add(this.txtFieldShowWidth); this.tabPage3.Controls.Add(this.label8); this.tabPage3.Controls.Add(this.txtFieldDescrip); this.tabPage3.Controls.Add(this.lblFieldName); this.tabPage3.Controls.Add(this.lstV); this.tabPage3.Location = new System.Drawing.Point(4, 22); this.tabPage3.Name = "tabPage3"; this.tabPage3.Padding = new System.Windows.Forms.Padding(3); this.tabPage3.Size = new System.Drawing.Size(553, 262); this.tabPage3.TabIndex = 2; this.tabPage3.Text = "显示设置"; this.tabPage3.UseVisualStyleBackColor = true; // // btnUpdate // this.btnUpdate.Location = new System.Drawing.Point(468, 231); this.btnUpdate.Name = "btnUpdate"; this.btnUpdate.Size = new System.Drawing.Size(75, 23); this.btnUpdate.TabIndex = 18; this.btnUpdate.Text = "修改"; this.btnUpdate.UseVisualStyleBackColor = true; this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click); // // chkShowColumn // this.chkShowColumn.AutoSize = true; this.chkShowColumn.Location = new System.Drawing.Point(402, 234); this.chkShowColumn.Name = "chkShowColumn"; this.chkShowColumn.Size = new System.Drawing.Size(60, 16); this.chkShowColumn.TabIndex = 17; this.chkShowColumn.Text = "显示列"; this.chkShowColumn.UseVisualStyleBackColor = true; // // label9 // this.label9.AutoSize = true; this.label9.Location = new System.Drawing.Point(241, 234); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(77, 12); this.label9.TabIndex = 16; this.label9.Text = "字段显示宽度"; // // txtFieldShowWidth // this.txtFieldShowWidth.Location = new System.Drawing.Point(324, 229); this.txtFieldShowWidth.Name = "txtFieldShowWidth"; this.txtFieldShowWidth.Size = new System.Drawing.Size(63, 21); this.txtFieldShowWidth.TabIndex = 15; this.txtFieldShowWidth.Validating += new System.ComponentModel.CancelEventHandler(this.txtFieldShowWidth_Validating); // // label8 // this.label8.AutoSize = true; this.label8.Location = new System.Drawing.Point(87, 234); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(53, 12); this.label8.TabIndex = 14; this.label8.Text = "字段描述"; // // txtFieldDescrip // this.txtFieldDescrip.Location = new System.Drawing.Point(146, 230); this.txtFieldDescrip.Name = "txtFieldDescrip"; this.txtFieldDescrip.Size = new System.Drawing.Size(89, 21); this.txtFieldDescrip.TabIndex = 13; // // lblFieldName // this.lblFieldName.AutoSize = true; this.lblFieldName.Location = new System.Drawing.Point(14, 235); this.lblFieldName.Name = "lblFieldName"; this.lblFieldName.Size = new System.Drawing.Size(53, 12); this.lblFieldName.TabIndex = 12; this.lblFieldName.Text = "字段名称"; // // lstV // this.lstV.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3, this.columnHeader4}); this.lstV.FullRowSelect = true; this.lstV.GridLines = true; this.lstV.Location = new System.Drawing.Point(6, 6); this.lstV.Name = "lstV"; this.lstV.Size = new System.Drawing.Size(541, 216); this.lstV.TabIndex = 1; this.lstV.UseCompatibleStateImageBehavior = false; this.lstV.View = System.Windows.Forms.View.Details; this.lstV.Click += new System.EventHandler(this.lstV_Click); // // columnHeader1 // this.columnHeader1.Text = "字段名称"; this.columnHeader1.Width = 100; // // columnHeader2 // this.columnHeader2.Text = "字段描述"; this.columnHeader2.Width = 120; // // columnHeader3 // this.columnHeader3.Text = "字段显示宽度"; this.columnHeader3.Width = 100; // // columnHeader4 // this.columnHeader4.Text = "显示列"; this.columnHeader4.Width = 100; // // btnOK // this.btnOK.Location = new System.Drawing.Point(170, 296); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(75, 23); this.btnOK.TabIndex = 1; this.btnOK.Text = "确定"; this.btnOK.UseVisualStyleBackColor = true; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // btnCancel // this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(313, 297); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 2; this.btnCancel.Text = "取消"; this.btnCancel.UseVisualStyleBackColor = true; // // FrmPropertySet // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(583, 332); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.Controls.Add(this.tabCtrl); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.Name = "FrmPropertySet"; this.Text = "查询相关设置"; this.tabCtrl.ResumeLayout(false); this.tabPage1.ResumeLayout(false); this.tabPage1.PerformLayout(); this.tabPage2.ResumeLayout(false); this.tabPage2.PerformLayout(); this.tabPage3.ResumeLayout(false); this.tabPage3.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TabControl tabCtrl; private System.Windows.Forms.TabPage tabPage1; private System.Windows.Forms.TextBox txtSql; private System.Windows.Forms.TabPage tabPage2; private System.Windows.Forms.Label label2; private System.Windows.Forms.ComboBox CboReturnField; private System.Windows.Forms.ComboBox CboQueryField; private System.Windows.Forms.Label label1; private System.Windows.Forms.TabPage tabPage3; private System.Windows.Forms.ListView lstV; private System.Windows.Forms.TextBox txtReturnMaxCount; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.ComboBox CboKeyField; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; private System.Windows.Forms.CheckBox ChkConvert; private System.Windows.Forms.Label label6; private System.Windows.Forms.TextBox txtFormHeight; private System.Windows.Forms.Label label5; private System.Windows.Forms.TextBox txtFormWidth; private System.Windows.Forms.CheckBox ChkAuto; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ColumnHeader columnHeader2; private System.Windows.Forms.ColumnHeader columnHeader3; private System.Windows.Forms.ColumnHeader columnHeader4; private System.Windows.Forms.Label label9; private System.Windows.Forms.TextBox txtFieldShowWidth; private System.Windows.Forms.Label label8; private System.Windows.Forms.TextBox txtFieldDescrip; private System.Windows.Forms.Label lblFieldName; private System.Windows.Forms.CheckBox chkShowColumn; private System.Windows.Forms.Button btnUpdate; private System.Windows.Forms.Label label7; private System.Windows.Forms.ComboBox CboSearchMatchWay; private System.Windows.Forms.ComboBox CboMatchNames; } }