📄 frmnumber.designer.cs
字号:
namespace KTV
{
partial class frmNumber
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.bntOK = new System.Windows.Forms.Button();
this.bntEsce = new System.Windows.Forms.Button();
this.txtName = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(21, 25);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 0;
this.label1.Text = "查询条件:";
//
// bntOK
//
this.bntOK.Location = new System.Drawing.Point(47, 59);
this.bntOK.Name = "bntOK";
this.bntOK.Size = new System.Drawing.Size(75, 23);
this.bntOK.TabIndex = 1;
this.bntOK.Text = "确定(&D)";
this.bntOK.UseVisualStyleBackColor = true;
this.bntOK.Click += new System.EventHandler(this.bntOK_Click);
//
// bntEsce
//
this.bntEsce.Location = new System.Drawing.Point(162, 59);
this.bntEsce.Name = "bntEsce";
this.bntEsce.Size = new System.Drawing.Size(75, 23);
this.bntEsce.TabIndex = 2;
this.bntEsce.Text = "取消(&E)";
this.bntEsce.UseVisualStyleBackColor = true;
this.bntEsce.Click += new System.EventHandler(this.bntEsce_Click);
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(92, 22);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(173, 21);
this.txtName.TabIndex = 3;
this.txtName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtName_KeyPress);
//
// frmNumber
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 116);
this.Controls.Add(this.txtName);
this.Controls.Add(this.bntEsce);
this.Controls.Add(this.bntOK);
this.Controls.Add(this.label1);
this.Name = "frmNumber";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "歌曲查询";
this.Load += new System.EventHandler(this.frmNumber_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button bntOK;
private System.Windows.Forms.Button bntEsce;
private System.Windows.Forms.TextBox txtName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -