namespace HydroUI { partial class FormFilter { /// /// 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.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); this.button2 = new System.Windows.Forms.Button(); this.button1 = new System.Windows.Forms.Button(); this.comboBox_type = new System.Windows.Forms.ComboBox(); this.comboBox_opt = new System.Windows.Forms.ComboBox(); this.textBox_value = new System.Windows.Forms.TextBox(); this.button_add = new System.Windows.Forms.Button(); this.listBox1 = new System.Windows.Forms.ListBox(); this.button_minus = new System.Windows.Forms.Button(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // flowLayoutPanel1 // this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top; this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 18); this.flowLayoutPanel1.Name = "flowLayoutPanel1"; this.flowLayoutPanel1.Size = new System.Drawing.Size(322, 164); this.flowLayoutPanel1.TabIndex = 0; // // label1 // this.label1.Dock = System.Windows.Forms.DockStyle.Top; this.label1.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(322, 18); this.label1.TabIndex = 1; this.label1.Text = " 标签"; // // label2 // this.label2.Dock = System.Windows.Forms.DockStyle.Top; this.label2.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label2.Location = new System.Drawing.Point(0, 182); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(322, 23); this.label2.TabIndex = 2; this.label2.Text = " 自定义筛选"; // // panel1 // this.panel1.Controls.Add(this.button2); this.panel1.Controls.Add(this.button1); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 405); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(322, 45); this.panel1.TabIndex = 4; // // button2 // this.button2.Location = new System.Drawing.Point(186, 10); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 23); this.button2.TabIndex = 1; this.button2.Text = "取消"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // button1 // this.button1.Location = new System.Drawing.Point(54, 10); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 0; this.button1.Text = "确定"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // comboBox_type // this.comboBox_type.FormattingEnabled = true; this.comboBox_type.Items.AddRange(new object[] { "Elev", "X", "Y"}); this.comboBox_type.Location = new System.Drawing.Point(14, 209); this.comboBox_type.Name = "comboBox_type"; this.comboBox_type.Size = new System.Drawing.Size(84, 20); this.comboBox_type.TabIndex = 5; // // comboBox_opt // this.comboBox_opt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBox_opt.FormattingEnabled = true; this.comboBox_opt.Items.AddRange(new object[] { "等于", "不等于", "大于", "小于", "大于等于", "小于等于", "包含", "不包含"}); this.comboBox_opt.Location = new System.Drawing.Point(104, 209); this.comboBox_opt.Name = "comboBox_opt"; this.comboBox_opt.Size = new System.Drawing.Size(76, 20); this.comboBox_opt.TabIndex = 5; // // textBox_value // this.textBox_value.Location = new System.Drawing.Point(186, 208); this.textBox_value.Name = "textBox_value"; this.textBox_value.Size = new System.Drawing.Size(75, 21); this.textBox_value.TabIndex = 6; // // button_add // this.button_add.Location = new System.Drawing.Point(267, 207); this.button_add.Name = "button_add"; this.button_add.Size = new System.Drawing.Size(24, 23); this.button_add.TabIndex = 7; this.button_add.Text = "+"; this.button_add.UseVisualStyleBackColor = true; this.button_add.Click += new System.EventHandler(this.button_add_Click); // // listBox1 // this.listBox1.FormattingEnabled = true; this.listBox1.ItemHeight = 12; this.listBox1.Location = new System.Drawing.Point(12, 239); this.listBox1.Name = "listBox1"; this.listBox1.Size = new System.Drawing.Size(305, 148); this.listBox1.TabIndex = 8; // // button_minus // this.button_minus.Location = new System.Drawing.Point(293, 207); this.button_minus.Name = "button_minus"; this.button_minus.Size = new System.Drawing.Size(24, 23); this.button_minus.TabIndex = 7; this.button_minus.Text = "-"; this.button_minus.UseVisualStyleBackColor = true; this.button_minus.Click += new System.EventHandler(this.button_minus_Click); // // FormFilter // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(322, 450); this.Controls.Add(this.listBox1); this.Controls.Add(this.button_minus); this.Controls.Add(this.button_add); this.Controls.Add(this.textBox_value); this.Controls.Add(this.comboBox_opt); this.Controls.Add(this.comboBox_type); this.Controls.Add(this.panel1); this.Controls.Add(this.label2); this.Controls.Add(this.flowLayoutPanel1); this.Controls.Add(this.label1); this.Name = "FormFilter"; this.Text = "FormFilter"; this.Load += new System.EventHandler(this.FormFilter_Load); this.panel1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Button button2; private System.Windows.Forms.Button button1; private System.Windows.Forms.ComboBox comboBox_type; private System.Windows.Forms.ComboBox comboBox_opt; private System.Windows.Forms.TextBox textBox_value; private System.Windows.Forms.Button button_add; private System.Windows.Forms.ListBox listBox1; private System.Windows.Forms.Button button_minus; } }