FrmQuery.Designer.cs
上传用户:xianghe012
上传日期:2022-07-02
资源大小:77k
文件大小:9k
源码类别:

GIS编程

开发平台:

C#

  1. namespace ArcMap
  2. {
  3.     partial class FrmQuery
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.label1 = new System.Windows.Forms.Label();
  29.             this.cmbLayers = new System.Windows.Forms.ComboBox();
  30.             this.label2 = new System.Windows.Forms.Label();
  31.             this.cmbFields = new System.Windows.Forms.ComboBox();
  32.             this.label3 = new System.Windows.Forms.Label();
  33.             this.txtValue = new System.Windows.Forms.TextBox();
  34.             this.btnQuery = new System.Windows.Forms.Button();
  35.             this.btnCancle = new System.Windows.Forms.Button();
  36.             this.groupBox1 = new System.Windows.Forms.GroupBox();
  37.             this.listBoxValue = new System.Windows.Forms.ListBox();
  38.             this.btnShowAllValue = new System.Windows.Forms.Button();
  39.             this.btnTable = new System.Windows.Forms.Button();
  40.             this.groupBox1.SuspendLayout();
  41.             this.SuspendLayout();
  42.             // 
  43.             // label1
  44.             // 
  45.             this.label1.AutoSize = true;
  46.             this.label1.Location = new System.Drawing.Point(12, 21);
  47.             this.label1.Name = "label1";
  48.             this.label1.Size = new System.Drawing.Size(53, 12);
  49.             this.label1.TabIndex = 0;
  50.             this.label1.Text = "查询图层";
  51.             // 
  52.             // cmbLayers
  53.             // 
  54.             this.cmbLayers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  55.             this.cmbLayers.FormattingEnabled = true;
  56.             this.cmbLayers.Location = new System.Drawing.Point(71, 18);
  57.             this.cmbLayers.Name = "cmbLayers";
  58.             this.cmbLayers.Size = new System.Drawing.Size(121, 20);
  59.             this.cmbLayers.TabIndex = 1;
  60.             this.cmbLayers.TextChanged += new System.EventHandler(this.cmbLayers_TextChanged);
  61.             // 
  62.             // label2
  63.             // 
  64.             this.label2.AutoSize = true;
  65.             this.label2.Location = new System.Drawing.Point(12, 72);
  66.             this.label2.Name = "label2";
  67.             this.label2.Size = new System.Drawing.Size(53, 12);
  68.             this.label2.TabIndex = 2;
  69.             this.label2.Text = "查询字段";
  70.             // 
  71.             // cmbFields
  72.             // 
  73.             this.cmbFields.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  74.             this.cmbFields.FormattingEnabled = true;
  75.             this.cmbFields.Location = new System.Drawing.Point(71, 64);
  76.             this.cmbFields.Name = "cmbFields";
  77.             this.cmbFields.Size = new System.Drawing.Size(121, 20);
  78.             this.cmbFields.TabIndex = 3;
  79.             this.cmbFields.TextChanged += new System.EventHandler(this.cmbFields_TextChanged);
  80.             this.cmbFields.DropDown += new System.EventHandler(this.cmbFields_DropDown);
  81.             // 
  82.             // label3
  83.             // 
  84.             this.label3.AutoSize = true;
  85.             this.label3.Location = new System.Drawing.Point(24, 115);
  86.             this.label3.Name = "label3";
  87.             this.label3.Size = new System.Drawing.Size(41, 12);
  88.             this.label3.TabIndex = 4;
  89.             this.label3.Text = "查询值";
  90.             // 
  91.             // txtValue
  92.             // 
  93.             this.txtValue.Location = new System.Drawing.Point(71, 112);
  94.             this.txtValue.Name = "txtValue";
  95.             this.txtValue.Size = new System.Drawing.Size(82, 21);
  96.             this.txtValue.TabIndex = 5;
  97.             // 
  98.             // btnQuery
  99.             // 
  100.             this.btnQuery.Location = new System.Drawing.Point(14, 158);
  101.             this.btnQuery.Name = "btnQuery";
  102.             this.btnQuery.Size = new System.Drawing.Size(55, 23);
  103.             this.btnQuery.TabIndex = 6;
  104.             this.btnQuery.Text = "确定";
  105.             this.btnQuery.UseVisualStyleBackColor = true;
  106.             this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
  107.             // 
  108.             // btnCancle
  109.             // 
  110.             this.btnCancle.Location = new System.Drawing.Point(137, 158);
  111.             this.btnCancle.Name = "btnCancle";
  112.             this.btnCancle.Size = new System.Drawing.Size(55, 23);
  113.             this.btnCancle.TabIndex = 7;
  114.             this.btnCancle.Text = "取消";
  115.             this.btnCancle.UseVisualStyleBackColor = true;
  116.             this.btnCancle.Click += new System.EventHandler(this.btnCancle_Click);
  117.             // 
  118.             // groupBox1
  119.             // 
  120.             this.groupBox1.Controls.Add(this.listBoxValue);
  121.             this.groupBox1.Location = new System.Drawing.Point(198, 12);
  122.             this.groupBox1.Name = "groupBox1";
  123.             this.groupBox1.Size = new System.Drawing.Size(152, 169);
  124.             this.groupBox1.TabIndex = 8;
  125.             this.groupBox1.TabStop = false;
  126.             this.groupBox1.Text = "字段值";
  127.             // 
  128.             // listBoxValue
  129.             // 
  130.             this.listBoxValue.FormattingEnabled = true;
  131.             this.listBoxValue.ItemHeight = 12;
  132.             this.listBoxValue.Location = new System.Drawing.Point(6, 15);
  133.             this.listBoxValue.Name = "listBoxValue";
  134.             this.listBoxValue.Size = new System.Drawing.Size(140, 148);
  135.             this.listBoxValue.TabIndex = 9;
  136.             this.listBoxValue.DoubleClick += new System.EventHandler(this.listBoxValue_DoubleClick);
  137.             // 
  138.             // btnShowAllValue
  139.             // 
  140.             this.btnShowAllValue.Location = new System.Drawing.Point(159, 111);
  141.             this.btnShowAllValue.Name = "btnShowAllValue";
  142.             this.btnShowAllValue.Size = new System.Drawing.Size(33, 22);
  143.             this.btnShowAllValue.TabIndex = 9;
  144.             this.btnShowAllValue.Text = "值";
  145.             this.btnShowAllValue.UseVisualStyleBackColor = true;
  146.             this.btnShowAllValue.Click += new System.EventHandler(this.btnShowAllValue_Click);
  147.             // 
  148.             // btnTable
  149.             // 
  150.             this.btnTable.Location = new System.Drawing.Point(75, 158);
  151.             this.btnTable.Name = "btnTable";
  152.             this.btnTable.Size = new System.Drawing.Size(55, 23);
  153.             this.btnTable.TabIndex = 10;
  154.             this.btnTable.Text = "表";
  155.             this.btnTable.UseVisualStyleBackColor = true;
  156.             this.btnTable.Click += new System.EventHandler(this.btnTable_Click);
  157.             // 
  158.             // FrmQuery
  159.             // 
  160.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  161.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  162.             this.ClientSize = new System.Drawing.Size(362, 202);
  163.             this.Controls.Add(this.btnTable);
  164.             this.Controls.Add(this.btnShowAllValue);
  165.             this.Controls.Add(this.groupBox1);
  166.             this.Controls.Add(this.btnCancle);
  167.             this.Controls.Add(this.btnQuery);
  168.             this.Controls.Add(this.txtValue);
  169.             this.Controls.Add(this.label3);
  170.             this.Controls.Add(this.cmbFields);
  171.             this.Controls.Add(this.label2);
  172.             this.Controls.Add(this.cmbLayers);
  173.             this.Controls.Add(this.label1);
  174.             this.MaximizeBox = false;
  175.             this.Name = "FrmQuery";
  176.             this.Text = "查询窗口";
  177.             this.Load += new System.EventHandler(this.FrmQuery_Load);
  178.             this.groupBox1.ResumeLayout(false);
  179.             this.ResumeLayout(false);
  180.             this.PerformLayout();
  181.         }
  182.         #endregion
  183.         private System.Windows.Forms.Label label1;
  184.         private System.Windows.Forms.ComboBox cmbLayers;
  185.         private System.Windows.Forms.Label label2;
  186.         private System.Windows.Forms.ComboBox cmbFields;
  187.         private System.Windows.Forms.Label label3;
  188.         private System.Windows.Forms.TextBox txtValue;
  189.         private System.Windows.Forms.Button btnQuery;
  190.         private System.Windows.Forms.Button btnCancle;
  191.         private System.Windows.Forms.GroupBox groupBox1;
  192.         private System.Windows.Forms.ListBox listBoxValue;
  193.         private System.Windows.Forms.Button btnShowAllValue;
  194.         private System.Windows.Forms.Button btnTable;
  195.     }
  196. }