📄 insertroomtype_form.designer.cs
字号:
namespace project_beat
{
partial class InsertRoomType_Form
{
/// <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.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.cboRoomreamrk = new System.Windows.Forms.ComboBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnNo = new System.Windows.Forms.Button();
this.txtRoomType = new System.Windows.Forms.TextBox();
this.txtLowconsume = new System.Windows.Forms.TextBox();
this.txtRs = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(13, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(117, 23);
this.label1.TabIndex = 12;
this.label1.Text = "房间类型:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.Location = new System.Drawing.Point(13, 70);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(117, 23);
this.label2.TabIndex = 13;
this.label2.Text = "容纳人数:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label3
//
this.label3.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label3.Location = new System.Drawing.Point(13, 106);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(117, 23);
this.label3.TabIndex = 14;
this.label3.Text = "最低消费:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cboRoomreamrk
//
this.cboRoomreamrk.FormattingEnabled = true;
this.cboRoomreamrk.Items.AddRange(new object[] {
"收取房间费",
"不计房间费"});
this.cboRoomreamrk.Location = new System.Drawing.Point(145, 141);
this.cboRoomreamrk.Name = "cboRoomreamrk";
this.cboRoomreamrk.Size = new System.Drawing.Size(112, 20);
this.cboRoomreamrk.TabIndex = 15;
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(55, 191);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 18;
this.btnOK.Text = "保存";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnNo
//
this.btnNo.Location = new System.Drawing.Point(182, 191);
this.btnNo.Name = "btnNo";
this.btnNo.Size = new System.Drawing.Size(75, 23);
this.btnNo.TabIndex = 19;
this.btnNo.Text = "取消";
this.btnNo.UseVisualStyleBackColor = true;
this.btnNo.Click += new System.EventHandler(this.btnNo_Click);
//
// txtRoomType
//
this.txtRoomType.Location = new System.Drawing.Point(145, 37);
this.txtRoomType.Name = "txtRoomType";
this.txtRoomType.Size = new System.Drawing.Size(112, 21);
this.txtRoomType.TabIndex = 20;
//
// txtLowconsume
//
this.txtLowconsume.Location = new System.Drawing.Point(145, 109);
this.txtLowconsume.Name = "txtLowconsume";
this.txtLowconsume.Size = new System.Drawing.Size(112, 21);
this.txtLowconsume.TabIndex = 21;
this.txtLowconsume.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtLowconsume_KeyPress);
//
// txtRs
//
this.txtRs.Location = new System.Drawing.Point(145, 73);
this.txtRs.Name = "txtRs";
this.txtRs.Size = new System.Drawing.Size(112, 21);
this.txtRs.TabIndex = 22;
this.txtRs.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtRs_KeyPress);
//
// label4
//
this.label4.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label4.Location = new System.Drawing.Point(13, 141);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(117, 28);
this.label4.TabIndex = 23;
this.label4.Text = "讲费方式:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// InsertRoomType_Form
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(317, 258);
this.Controls.Add(this.label4);
this.Controls.Add(this.txtRs);
this.Controls.Add(this.txtLowconsume);
this.Controls.Add(this.txtRoomType);
this.Controls.Add(this.btnNo);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.cboRoomreamrk);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "InsertRoomType_Form";
this.Text = "增加房间类型";
this.Load += new System.EventHandler(this.InsertRoomType_Form_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox cboRoomreamrk;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnNo;
private System.Windows.Forms.TextBox txtRoomType;
private System.Windows.Forms.TextBox txtLowconsume;
private System.Windows.Forms.TextBox txtRs;
private System.Windows.Forms.Label label4;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -