namespace OSGeo.MapGuide.Maestro.ResourceEditors.FeatureSourcePreview { partial class SqlPreviewCtrl { /// /// 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SqlPreviewCtrl)); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.btnRunQuery = new System.Windows.Forms.ToolStripButton(); this.btnStop = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.btnClear = new System.Windows.Forms.ToolStripButton(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.txtSql = new System.Windows.Forms.TextBox(); this.grdResults = new System.Windows.Forms.DataGridView(); this.toolStrip1.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdResults)).BeginInit(); this.SuspendLayout(); // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btnRunQuery, this.btnStop, this.toolStripSeparator1, this.btnClear}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(667, 25); this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // // btnRunQuery // this.btnRunQuery.Image = ((System.Drawing.Image)(resources.GetObject("btnRunQuery.Image"))); this.btnRunQuery.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnRunQuery.Name = "btnRunQuery"; this.btnRunQuery.Size = new System.Drawing.Size(79, 22); this.btnRunQuery.Text = "Run Query"; this.btnRunQuery.Click += new System.EventHandler(this.btnRunQuery_Click); // // btnStop // this.btnStop.Image = ((System.Drawing.Image)(resources.GetObject("btnStop.Image"))); this.btnStop.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnStop.Name = "btnStop"; this.btnStop.Size = new System.Drawing.Size(49, 22); this.btnStop.Text = "Stop"; this.btnStop.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); // // 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.txtSql); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.grdResults); this.splitContainer1.Size = new System.Drawing.Size(667, 432); this.splitContainer1.SplitterDistance = 170; this.splitContainer1.TabIndex = 1; // // txtSql // this.txtSql.Dock = System.Windows.Forms.DockStyle.Fill; this.txtSql.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtSql.Location = new System.Drawing.Point(0, 0); this.txtSql.Multiline = true; this.txtSql.Name = "txtSql"; this.txtSql.Size = new System.Drawing.Size(667, 170); this.txtSql.TabIndex = 0; // // 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(667, 258); this.grdResults.TabIndex = 1; // // SqlPreviewCtrl // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.splitContainer1); this.Controls.Add(this.toolStrip1); this.Name = "SqlPreviewCtrl"; this.Size = new System.Drawing.Size(667, 457); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel1.PerformLayout(); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.grdResults)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripButton btnRunQuery; private System.Windows.Forms.ToolStripButton btnStop; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripButton btnClear; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.TextBox txtSql; private System.Windows.Forms.DataGridView grdResults; } }