⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queryfrm.designer.cs

📁 简单数据库
💻 CS
字号:
namespace QueryTool_V1
{
    partial class QueryFrm
    {
        /// <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();
            }
            base.Dispose(disposing);
        }

        #region Windows Form 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.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.dataGridViewQuery = new System.Windows.Forms.DataGridView();
            this.lblTimeDelay = new System.Windows.Forms.Label();
            this.listViewQueryResults = new System.Windows.Forms.ListView();
            this.progressBarStatus = new System.Windows.Forms.ProgressBar();
            this.lblStatus = new System.Windows.Forms.Label();
            this.splitterStatus = new System.Windows.Forms.Splitter();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.deleteClauseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openQueryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.runQueryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.menuStrip1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewQuery)).BeginInit();
            this.SuspendLayout();
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openQueryToolStripMenuItem,
            this.runQueryToolStripMenuItem,
            this.saveToolStripMenuItem,
            this.deleteClauseToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(459, 24);
            this.menuStrip1.TabIndex = 0;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabControl1.Location = new System.Drawing.Point(0, 24);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(459, 477);
            this.tabControl1.TabIndex = 1;
            this.tabControl1.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabControl1_Selected);
            this.tabControl1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseClick);
            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.splitContainer1);
            this.tabPage1.Location = new System.Drawing.Point(4, 25);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(451, 448);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Data [Query]";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // splitContainer1
            // 
            this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(3, 3);
            this.splitContainer1.Name = "splitContainer1";
            this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.dataGridViewQuery);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.lblTimeDelay);
            this.splitContainer1.Panel2.Controls.Add(this.listViewQueryResults);
            this.splitContainer1.Panel2.Controls.Add(this.progressBarStatus);
            this.splitContainer1.Panel2.Controls.Add(this.lblStatus);
            this.splitContainer1.Panel2.Controls.Add(this.splitterStatus);
            this.splitContainer1.Size = new System.Drawing.Size(445, 442);
            this.splitContainer1.SplitterDistance = 170;
            this.splitContainer1.TabIndex = 0;
            // 
            // dataGridViewQuery
            // 
            this.dataGridViewQuery.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewQuery.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewQuery.Location = new System.Drawing.Point(0, 0);
            this.dataGridViewQuery.Name = "dataGridViewQuery";
            this.dataGridViewQuery.Size = new System.Drawing.Size(443, 168);
            this.dataGridViewQuery.TabIndex = 0;
            this.dataGridViewQuery.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewQuery_CellValueChanged);
            this.dataGridViewQuery.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewQuery_CellClick);
            this.dataGridViewQuery.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridViewQuery_RowHeaderMouseClick);
            // 
            // lblTimeDelay
            // 
            this.lblTimeDelay.AutoSize = true;
            this.lblTimeDelay.BackColor = System.Drawing.SystemColors.Info;
            this.lblTimeDelay.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTimeDelay.ForeColor = System.Drawing.Color.Red;
            this.lblTimeDelay.Location = new System.Drawing.Point(336, 24);
            this.lblTimeDelay.Name = "lblTimeDelay";
            this.lblTimeDelay.Size = new System.Drawing.Size(68, 16);
            this.lblTimeDelay.TabIndex = 4;
            this.lblTimeDelay.Text = "00:00:00";
            this.lblTimeDelay.Visible = false;
            // 
            // listViewQueryResults
            // 
            this.listViewQueryResults.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewQueryResults.FullRowSelect = true;
            this.listViewQueryResults.GridLines = true;
            this.listViewQueryResults.Location = new System.Drawing.Point(0, 43);
            this.listViewQueryResults.Name = "listViewQueryResults";
            this.listViewQueryResults.Size = new System.Drawing.Size(443, 223);
            this.listViewQueryResults.TabIndex = 3;
            this.listViewQueryResults.UseCompatibleStateImageBehavior = false;
            this.listViewQueryResults.View = System.Windows.Forms.View.Details;
            this.listViewQueryResults.DoubleClick += new System.EventHandler(this.listViewQueryResults_DoubleClick);
            this.listViewQueryResults.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listViewQueryResults_ColumnClick);
            // 
            // progressBarStatus
            // 
            this.progressBarStatus.Location = new System.Drawing.Point(339, 3);
            this.progressBarStatus.Name = "progressBarStatus";
            this.progressBarStatus.Size = new System.Drawing.Size(100, 16);
            this.progressBarStatus.TabIndex = 2;
            this.progressBarStatus.Visible = false;
            // 
            // lblStatus
            // 
            this.lblStatus.AutoSize = true;
            this.lblStatus.BackColor = System.Drawing.SystemColors.Info;
            this.lblStatus.Location = new System.Drawing.Point(4, 12);
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.Size = new System.Drawing.Size(183, 16);
            this.lblStatus.TabIndex = 1;
            this.lblStatus.Text = "Query Results: 0 results found";
            // 
            // splitterStatus
            // 
            this.splitterStatus.BackColor = System.Drawing.SystemColors.Info;
            this.splitterStatus.Dock = System.Windows.Forms.DockStyle.Top;
            this.splitterStatus.Location = new System.Drawing.Point(0, 0);
            this.splitterStatus.Name = "splitterStatus";
            this.splitterStatus.Size = new System.Drawing.Size(443, 43);
            this.splitterStatus.TabIndex = 0;
            this.splitterStatus.TabStop = false;
            // 
            // tabPage2
            // 
            this.tabPage2.Location = new System.Drawing.Point(4, 25);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(451, 448);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "ID 1 [Results]";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // deleteClauseToolStripMenuItem
            // 
            this.deleteClauseToolStripMenuItem.Image = global::QueryTool_V1.Properties.Resources.deleteClause;
            this.deleteClauseToolStripMenuItem.Name = "deleteClauseToolStripMenuItem";
            this.deleteClauseToolStripMenuItem.Size = new System.Drawing.Size(106, 20);
            this.deleteClauseToolStripMenuItem.Text = "Delete Clause";
            this.deleteClauseToolStripMenuItem.Click += new System.EventHandler(this.deleteClauseToolStripMenuItem_Click);
            // 
            // openQueryToolStripMenuItem
            // 
            this.openQueryToolStripMenuItem.Image = global::QueryTool_V1.Properties.Resources.open;
            this.openQueryToolStripMenuItem.Name = "openQueryToolStripMenuItem";
            this.openQueryToolStripMenuItem.Size = new System.Drawing.Size(129, 20);
            this.openQueryToolStripMenuItem.Text = "Open New Query ";
            this.openQueryToolStripMenuItem.Click += new System.EventHandler(this.openQueryToolStripMenuItem_Click);
            // 
            // runQueryToolStripMenuItem
            // 
            this.runQueryToolStripMenuItem.Image = global::QueryTool_V1.Properties.Resources.run;
            this.runQueryToolStripMenuItem.Name = "runQueryToolStripMenuItem";
            this.runQueryToolStripMenuItem.Size = new System.Drawing.Size(91, 20);
            this.runQueryToolStripMenuItem.Text = "Run Query";
            this.runQueryToolStripMenuItem.Click += new System.EventHandler(this.runQueryToolStripMenuItem_Click);
            // 
            // saveToolStripMenuItem
            // 
            this.saveToolStripMenuItem.Image = global::QueryTool_V1.Properties.Resources.save;
            this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
            this.saveToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
            this.saveToolStripMenuItem.Text = "Save";
            // 
            // QueryFrm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(459, 501);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.menuStrip1);
            this.Name = "QueryFrm";
            this.Text = "Simple Query Tool";
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.Panel2.PerformLayout();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewQuery)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStripMenuItem openQueryToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem runQueryToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage1;
        private System.Windows.Forms.TabPage tabPage2;
        private System.Windows.Forms.SplitContainer splitContainer1;
        private System.Windows.Forms.Splitter splitterStatus;
        private System.Windows.Forms.ProgressBar progressBarStatus;
        private System.Windows.Forms.Label lblStatus;
        private System.Windows.Forms.DataGridView dataGridViewQuery;
        private System.Windows.Forms.ListView listViewQueryResults;
        private System.Windows.Forms.Label lblTimeDelay;
        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.ToolStripMenuItem deleteClauseToolStripMenuItem;

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -