📄 querypanecontrol.designer.cs
字号:
namespace CEQuery
{
partial class QueryPaneControl
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
if (this.connection != null && this.connection.State == System.Data.ConnectionState.Open)
{
this.connection.Close();
this.connection = null;
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.rtQuery = new CEQuery.SyntaxRichTextBox();
this.dgvQuery = new System.Windows.Forms.DataGridView();
this.ctxGridMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvQuery)).BeginInit();
this.ctxGridMenu.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.rtQuery);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.dgvQuery);
this.splitContainer1.Size = new System.Drawing.Size(150, 150);
this.splitContainer1.SplitterDistance = 75;
this.splitContainer1.TabIndex = 0;
//
// rtQuery
//
this.rtQuery.AcceptsTab = true;
this.rtQuery.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.rtQuery.Dock = System.Windows.Forms.DockStyle.Fill;
this.rtQuery.EnableAutoDragDrop = true;
this.rtQuery.Font = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rtQuery.Location = new System.Drawing.Point(0, 0);
this.rtQuery.Name = "rtQuery";
this.rtQuery.Size = new System.Drawing.Size(150, 75);
this.rtQuery.TabIndex = 3;
this.rtQuery.Text = "";
this.rtQuery.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rtQuery_KeyDown);
//
// dgvQuery
//
this.dgvQuery.AllowUserToAddRows = false;
this.dgvQuery.AllowUserToDeleteRows = false;
this.dgvQuery.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvQuery.ContextMenuStrip = this.ctxGridMenu;
this.dgvQuery.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvQuery.Location = new System.Drawing.Point(0, 0);
this.dgvQuery.Name = "dgvQuery";
this.dgvQuery.Size = new System.Drawing.Size(150, 71);
this.dgvQuery.TabIndex = 5;
this.dgvQuery.MouseUp += new System.Windows.Forms.MouseEventHandler(this.dgvQuery_MouseUp);
this.dgvQuery.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dgvQuery_DataError);
//
// ctxGridMenu
//
this.ctxGridMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.updateToolStripMenuItem,
this.deleteToolStripMenuItem});
this.ctxGridMenu.Name = "ctxDataMenu";
this.ctxGridMenu.Size = new System.Drawing.Size(121, 48);
//
// updateToolStripMenuItem
//
this.updateToolStripMenuItem.Image = global::CEQuery.Properties.Resources.pass;
this.updateToolStripMenuItem.Name = "updateToolStripMenuItem";
this.updateToolStripMenuItem.Size = new System.Drawing.Size(120, 22);
this.updateToolStripMenuItem.Text = "Update";
this.updateToolStripMenuItem.Click += new System.EventHandler(this.updateToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Image = global::CEQuery.Properties.Resources.error_2;
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(120, 22);
this.deleteToolStripMenuItem.Text = "Delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// QueryPaneControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.splitContainer1);
this.Name = "QueryPaneControl";
this.Load += new System.EventHandler(this.QueryPaneControl_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvQuery)).EndInit();
this.ctxGridMenu.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private SyntaxRichTextBox rtQuery;
private System.Windows.Forms.DataGridView dgvQuery;
private System.Windows.Forms.ContextMenuStrip ctxGridMenu;
private System.Windows.Forms.ToolStripMenuItem updateToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -