namespace QueryFeatureSource { partial class Form1 { /// /// 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.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.label1 = new System.Windows.Forms.Label(); this.txtResourceId = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.cmbFeatureClasses = new System.Windows.Forms.ComboBox(); this.label3 = new System.Windows.Forms.Label(); this.txtFilter = new System.Windows.Forms.TextBox(); this.btnQuery = new System.Windows.Forms.Button(); this.btnClear = new System.Windows.Forms.Button(); this.grdResults = new System.Windows.Forms.DataGridView(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdResults)).BeginInit(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.btnClear); this.groupBox1.Controls.Add(this.btnQuery); this.groupBox1.Controls.Add(this.txtFilter); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.cmbFeatureClasses); this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.button1); this.groupBox1.Controls.Add(this.txtResourceId); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Location = new System.Drawing.Point(13, 13); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(660, 174); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Query Parameters"; // // groupBox2 // this.groupBox2.Controls.Add(this.grdResults); this.groupBox2.Location = new System.Drawing.Point(13, 193); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(660, 271); this.groupBox2.TabIndex = 1; this.groupBox2.TabStop = false; this.groupBox2.Text = "Results"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(16, 29); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(80, 13); this.label1.TabIndex = 0; this.label1.Text = "Feature Source"; // // txtResourceId // this.txtResourceId.Location = new System.Drawing.Point(115, 26); this.txtResourceId.Name = "txtResourceId"; this.txtResourceId.ReadOnly = true; this.txtResourceId.Size = new System.Drawing.Size(419, 20); this.txtResourceId.TabIndex = 1; // // button1 // this.button1.Location = new System.Drawing.Point(549, 24); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 2; this.button1.Text = "Browse"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(16, 55); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(71, 13); this.label2.TabIndex = 3; this.label2.Text = "Feature Class"; // // cmbFeatureClasses // this.cmbFeatureClasses.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbFeatureClasses.FormattingEnabled = true; this.cmbFeatureClasses.Location = new System.Drawing.Point(115, 52); this.cmbFeatureClasses.Name = "cmbFeatureClasses"; this.cmbFeatureClasses.Size = new System.Drawing.Size(419, 21); this.cmbFeatureClasses.TabIndex = 4; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(16, 95); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(29, 13); this.label3.TabIndex = 5; this.label3.Text = "Filter"; // // txtFilter // this.txtFilter.Location = new System.Drawing.Point(115, 92); this.txtFilter.Name = "txtFilter"; this.txtFilter.Size = new System.Drawing.Size(419, 20); this.txtFilter.TabIndex = 6; // // btnQuery // this.btnQuery.Location = new System.Drawing.Point(459, 136); this.btnQuery.Name = "btnQuery"; this.btnQuery.Size = new System.Drawing.Size(75, 23); this.btnQuery.TabIndex = 7; this.btnQuery.Text = "Run Query"; this.btnQuery.UseVisualStyleBackColor = true; this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click); // // btnClear // this.btnClear.Location = new System.Drawing.Point(549, 136); this.btnClear.Name = "btnClear"; this.btnClear.Size = new System.Drawing.Size(75, 23); this.btnClear.TabIndex = 8; this.btnClear.Text = "Clear"; this.btnClear.UseVisualStyleBackColor = true; this.btnClear.Click += new System.EventHandler(this.btnClear_Click); // // grdResults // this.grdResults.AllowUserToAddRows = false; this.grdResults.AllowUserToDeleteRows = false; this.grdResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.grdResults.Dock = System.Windows.Forms.DockStyle.Fill; this.grdResults.Location = new System.Drawing.Point(3, 16); this.grdResults.Name = "grdResults"; this.grdResults.ReadOnly = true; this.grdResults.Size = new System.Drawing.Size(654, 252); this.grdResults.TabIndex = 0; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(685, 476); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Name = "Form1"; this.Text = "QueryFeatureSource Example"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.grdResults)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.ComboBox cmbFeatureClasses; private System.Windows.Forms.Label label2; private System.Windows.Forms.Button button1; private System.Windows.Forms.TextBox txtResourceId; private System.Windows.Forms.Label label1; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.TextBox txtFilter; private System.Windows.Forms.Label label3; private System.Windows.Forms.Button btnClear; private System.Windows.Forms.Button btnQuery; private System.Windows.Forms.DataGridView grdResults; } }