📄 frminfofind.designer.cs
字号:
namespace Hotel.UI
{
partial class frmInfoFind
{
/// <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.btnCha = new System.Windows.Forms.Button();
this.lsvResult = new System.Windows.Forms.ListView();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtValue = new System.Windows.Forms.TextBox();
this.choBox = new System.Windows.Forms.ComboBox();
this.btnExit = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(15, 27);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(59, 12);
this.label1.TabIndex = 0;
this.label1.Text = "查询方式:";
//
// btnCha
//
this.btnCha.Location = new System.Drawing.Point(310, 82);
this.btnCha.Name = "btnCha";
this.btnCha.Size = new System.Drawing.Size(69, 26);
this.btnCha.TabIndex = 2;
this.btnCha.Text = "查找(&F)";
this.btnCha.UseVisualStyleBackColor = true;
this.btnCha.Click += new System.EventHandler(this.btnCha_Click);
//
// lsvResult
//
this.lsvResult.FullRowSelect = true;
this.lsvResult.Location = new System.Drawing.Point(6, 20);
this.lsvResult.Name = "lsvResult";
this.lsvResult.Size = new System.Drawing.Size(456, 272);
this.lsvResult.TabIndex = 3;
this.lsvResult.UseCompatibleStateImageBehavior = false;
this.lsvResult.View = System.Windows.Forms.View.Details;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.lsvResult);
this.groupBox1.Location = new System.Drawing.Point(7, 114);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(468, 300);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "查询结果";
//
// txtValue
//
this.txtValue.Location = new System.Drawing.Point(255, 23);
this.txtValue.Name = "txtValue";
this.txtValue.Size = new System.Drawing.Size(153, 21);
this.txtValue.TabIndex = 5;
this.txtValue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtValue_KeyPress);
//
// choBox
//
this.choBox.FormattingEnabled = true;
this.choBox.Items.AddRange(new object[] {
"顾客编号",
"顾客姓名",
"证件号码"});
this.choBox.Location = new System.Drawing.Point(80, 24);
this.choBox.Name = "choBox";
this.choBox.Size = new System.Drawing.Size(89, 20);
this.choBox.TabIndex = 6;
this.choBox.Text = "顾客姓名";
//
// btnExit
//
this.btnExit.Location = new System.Drawing.Point(385, 82);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(69, 26);
this.btnExit.TabIndex = 2;
this.btnExit.Text = "退出(&X)";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.choBox);
this.groupBox2.Controls.Add(this.txtValue);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Location = new System.Drawing.Point(9, 8);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(466, 63);
this.groupBox2.TabIndex = 7;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "客户信息查询";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(202, 27);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 12);
this.label2.TabIndex = 0;
this.label2.Text = "关键字:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.ForeColor = System.Drawing.Color.Red;
this.label4.Location = new System.Drawing.Point(34, 89);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(137, 12);
this.label4.TabIndex = 0;
this.label4.Text = "* 本系统支持模糊查询!";
//
// frmInfoFind
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(483, 421);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnCha);
this.Controls.Add(this.label4);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmInfoFind";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "客户信息查询";
this.Load += new System.EventHandler(this.frmInfoFind_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnCha;
private System.Windows.Forms.ListView lsvResult;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txtValue;
private System.Windows.Forms.ComboBox choBox;
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label4;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -