namespace OSGeo.MapGuide.Maestro.ResourceEditors.FeatureSourcePreview { partial class ClassPreviewCtrl { /// /// 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 Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClassPreviewCtrl)); this.grdResults = new System.Windows.Forms.DataGridView(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.lblQueryMode = new System.Windows.Forms.ToolStripLabel(); this.cmbQueryMode = new System.Windows.Forms.ToolStripComboBox(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.btnQuery = new System.Windows.Forms.ToolStripButton(); this.btnCancel = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.btnClear = new System.Windows.Forms.ToolStripButton(); this.lblResults = new System.Windows.Forms.Label(); this.queryPanel = new System.Windows.Forms.Panel(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); ((System.ComponentModel.ISupportInitialize)(this.grdResults)).BeginInit(); this.toolStrip1.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // grdResults // this.grdResults.AllowUserToAddRows = false; this.grdResults.AllowUserToDeleteRows = false; this.grdResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window; dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText; dataGridViewCellStyle1.NullValue = "(null)"; dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False; this.grdResults.DefaultCellStyle = dataGridViewCellStyle1; this.grdResults.Dock = System.Windows.Forms.DockStyle.Fill; this.grdResults.Location = new System.Drawing.Point(0, 0); this.grdResults.Name = "grdResults"; this.grdResults.ReadOnly = true; this.grdResults.Size = new System.Drawing.Size(589, 280); this.grdResults.TabIndex = 0; // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblQueryMode, this.cmbQueryMode, this.toolStripSeparator2, this.btnQuery, this.btnCancel, this.toolStripSeparator1, this.btnClear}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(589, 25); this.toolStrip1.TabIndex = 1; this.toolStrip1.Text = "toolStrip1"; // // lblQueryMode // this.lblQueryMode.Name = "lblQueryMode"; this.lblQueryMode.Size = new System.Drawing.Size(66, 22); this.lblQueryMode.Text = "Query Mode"; // // cmbQueryMode // this.cmbQueryMode.Name = "cmbQueryMode"; this.cmbQueryMode.Size = new System.Drawing.Size(121, 25); this.cmbQueryMode.SelectedIndexChanged += new System.EventHandler(this.cmbQueryMode_SelectedIndexChanged); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25); // // btnQuery // this.btnQuery.Image = ((System.Drawing.Image)(resources.GetObject("btnQuery.Image"))); this.btnQuery.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnQuery.Name = "btnQuery"; this.btnQuery.Size = new System.Drawing.Size(79, 22); this.btnQuery.Text = "Run Query"; this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click); // // btnCancel // this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image"))); this.btnCancel.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(49, 22); this.btnCancel.Text = "Stop"; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // btnClear // this.btnClear.Image = ((System.Drawing.Image)(resources.GetObject("btnClear.Image"))); this.btnClear.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnClear.Name = "btnClear"; this.btnClear.Size = new System.Drawing.Size(52, 22); this.btnClear.Text = "Clear"; this.btnClear.Click += new System.EventHandler(this.btnClear_Click); // // lblResults // this.lblResults.AutoSize = true; this.lblResults.Location = new System.Drawing.Point(5, 460); this.lblResults.Name = "lblResults"; this.lblResults.Size = new System.Drawing.Size(0, 13); this.lblResults.TabIndex = 3; // // queryPanel // this.queryPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.queryPanel.Location = new System.Drawing.Point(0, 0); this.queryPanel.Name = "queryPanel"; this.queryPanel.Size = new System.Drawing.Size(589, 171); this.queryPanel.TabIndex = 4; // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 25); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.queryPanel); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.grdResults); this.splitContainer1.Size = new System.Drawing.Size(589, 455); this.splitContainer1.SplitterDistance = 171; this.splitContainer1.TabIndex = 5; // // ClassPreviewCtrl // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.splitContainer1); this.Controls.Add(this.lblResults); this.Controls.Add(this.toolStrip1); this.Name = "ClassPreviewCtrl"; this.Size = new System.Drawing.Size(589, 480); ((System.ComponentModel.ISupportInitialize)(this.grdResults)).EndInit(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.DataGridView grdResults; private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripButton btnQuery; private System.Windows.Forms.ToolStripButton btnCancel; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripButton btnClear; private System.Windows.Forms.Label lblResults; private System.Windows.Forms.ToolStripLabel lblQueryMode; private System.Windows.Forms.ToolStripComboBox cmbQueryMode; private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; private System.Windows.Forms.Panel queryPanel; private System.Windows.Forms.SplitContainer splitContainer1; } }