📄 dmx ad hoc.designer.cs
字号:
namespace Chapter20
{
partial class frmDMXAdHoc
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDMXAdHoc));
this.btnExecute = new System.Windows.Forms.Button();
this.dgvResults = new System.Windows.Forms.DataGridView();
this.txtQuery = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.dgvResults)).BeginInit();
this.SuspendLayout();
//
// btnExecute
//
this.btnExecute.Location = new System.Drawing.Point(319, 199);
this.btnExecute.Name = "btnExecute";
this.btnExecute.Size = new System.Drawing.Size(75, 23);
this.btnExecute.TabIndex = 0;
this.btnExecute.Text = "Execute";
this.btnExecute.UseVisualStyleBackColor = true;
this.btnExecute.Click += new System.EventHandler(this.btnExecute_Click);
//
// dgvResults
//
this.dgvResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvResults.Location = new System.Drawing.Point(12, 235);
this.dgvResults.Name = "dgvResults";
this.dgvResults.Size = new System.Drawing.Size(383, 203);
this.dgvResults.TabIndex = 1;
//
// txtQuery
//
this.txtQuery.Location = new System.Drawing.Point(12, 22);
this.txtQuery.Multiline = true;
this.txtQuery.Name = "txtQuery";
this.txtQuery.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtQuery.Size = new System.Drawing.Size(382, 171);
this.txtQuery.TabIndex = 2;
this.txtQuery.Text = resources.GetString("txtQuery.Text");
//
// frmDMXAdHoc
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(407, 456);
this.Controls.Add(this.txtQuery);
this.Controls.Add(this.dgvResults);
this.Controls.Add(this.btnExecute);
this.Name = "frmDMXAdHoc";
this.Text = "DMX Ad Hoc";
((System.ComponentModel.ISupportInitialize)(this.dgvResults)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnExecute;
private System.Windows.Forms.DataGridView dgvResults;
private System.Windows.Forms.TextBox txtQuery;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -