📄 roomsettingform.designer.cs
字号:
namespace HotelManager
{
partial class RoomSettingForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoomSettingForm));
this.lblNumber = new System.Windows.Forms.Label();
this.lblTypeID = new System.Windows.Forms.Label();
this.lblPrice = new System.Windows.Forms.Label();
this.txtGuestNumber = new System.Windows.Forms.TextBox();
this.txtPrice = new System.Windows.Forms.TextBox();
this.panInfo = new System.Windows.Forms.Panel();
this.cboState = new System.Windows.Forms.ComboBox();
this.lblState = new System.Windows.Forms.Label();
this.lblBedNumber = new System.Windows.Forms.Label();
this.txtBedNumber = new System.Windows.Forms.TextBox();
this.lblGuestNumber = new System.Windows.Forms.Label();
this.cboTypeID = new System.Windows.Forms.ComboBox();
this.txtDescription = new System.Windows.Forms.TextBox();
this.lblDescription = new System.Windows.Forms.Label();
this.txtNumber = new System.Windows.Forms.TextBox();
this.tsBtnSave = new System.Windows.Forms.ToolStripButton();
this.tsBtnCancel = new System.Windows.Forms.ToolStripButton();
this.tsBtnExit = new System.Windows.Forms.ToolStripButton();
this.tsBtnDelete = new System.Windows.Forms.ToolStripButton();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.tsBntAdd = new System.Windows.Forms.ToolStripButton();
this.tsBntUpdate = new System.Windows.Forms.ToolStripButton();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.RoomID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Number = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TypeID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.BedNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.State = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.GuestNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Description = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.lblRoomID = new System.Windows.Forms.Label();
this.btnSearch = new System.Windows.Forms.Button();
this.gbSearch = new System.Windows.Forms.GroupBox();
this.txtSearch = new System.Windows.Forms.TextBox();
this.panInfo.SuspendLayout();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.gbSearch.SuspendLayout();
this.SuspendLayout();
//
// lblNumber
//
this.lblNumber.AutoSize = true;
this.lblNumber.Location = new System.Drawing.Point(10, 11);
this.lblNumber.Name = "lblNumber";
this.lblNumber.Size = new System.Drawing.Size(41, 12);
this.lblNumber.TabIndex = 3;
this.lblNumber.Text = "房间号";
//
// lblTypeID
//
this.lblTypeID.AutoSize = true;
this.lblTypeID.Location = new System.Drawing.Point(108, 11);
this.lblTypeID.Name = "lblTypeID";
this.lblTypeID.Size = new System.Drawing.Size(53, 12);
this.lblTypeID.TabIndex = 4;
this.lblTypeID.Text = "类型名称";
//
// lblPrice
//
this.lblPrice.AutoSize = true;
this.lblPrice.Location = new System.Drawing.Point(197, 10);
this.lblPrice.Name = "lblPrice";
this.lblPrice.Size = new System.Drawing.Size(29, 12);
this.lblPrice.TabIndex = 5;
this.lblPrice.Text = "价格";
//
// txtGuestNumber
//
this.txtGuestNumber.Location = new System.Drawing.Point(300, 33);
this.txtGuestNumber.Name = "txtGuestNumber";
this.txtGuestNumber.Size = new System.Drawing.Size(78, 21);
this.txtGuestNumber.TabIndex = 9;
this.txtGuestNumber.TextChanged += new System.EventHandler(this.txtGuestNumber_TextChanged);
//
// txtPrice
//
this.txtPrice.Enabled = false;
this.txtPrice.Location = new System.Drawing.Point(199, 33);
this.txtPrice.MaxLength = 99999;
this.txtPrice.Name = "txtPrice";
this.txtPrice.Size = new System.Drawing.Size(78, 21);
this.txtPrice.TabIndex = 8;
//
// panInfo
//
this.panInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panInfo.Controls.Add(this.cboState);
this.panInfo.Controls.Add(this.lblState);
this.panInfo.Controls.Add(this.lblBedNumber);
this.panInfo.Controls.Add(this.txtBedNumber);
this.panInfo.Controls.Add(this.lblGuestNumber);
this.panInfo.Controls.Add(this.cboTypeID);
this.panInfo.Controls.Add(this.txtDescription);
this.panInfo.Controls.Add(this.lblNumber);
this.panInfo.Controls.Add(this.lblTypeID);
this.panInfo.Controls.Add(this.txtGuestNumber);
this.panInfo.Controls.Add(this.lblPrice);
this.panInfo.Controls.Add(this.txtPrice);
this.panInfo.Controls.Add(this.lblDescription);
this.panInfo.Controls.Add(this.txtNumber);
this.panInfo.Location = new System.Drawing.Point(12, 264);
this.panInfo.Name = "panInfo";
this.panInfo.Size = new System.Drawing.Size(587, 123);
this.panInfo.TabIndex = 16;
//
// cboState
//
this.cboState.FormattingEnabled = true;
this.cboState.Location = new System.Drawing.Point(496, 33);
this.cboState.Name = "cboState";
this.cboState.Size = new System.Drawing.Size(78, 20);
this.cboState.TabIndex = 18;
//
// lblState
//
this.lblState.AutoSize = true;
this.lblState.Location = new System.Drawing.Point(502, 10);
this.lblState.Name = "lblState";
this.lblState.Size = new System.Drawing.Size(29, 12);
this.lblState.TabIndex = 17;
this.lblState.Text = "状态";
//
// lblBedNumber
//
this.lblBedNumber.AutoSize = true;
this.lblBedNumber.Location = new System.Drawing.Point(402, 8);
this.lblBedNumber.Name = "lblBedNumber";
this.lblBedNumber.Size = new System.Drawing.Size(41, 12);
this.lblBedNumber.TabIndex = 15;
this.lblBedNumber.Text = "床位数";
//
// txtBedNumber
//
this.txtBedNumber.Location = new System.Drawing.Point(404, 33);
this.txtBedNumber.Name = "txtBedNumber";
this.txtBedNumber.Size = new System.Drawing.Size(78, 21);
this.txtBedNumber.TabIndex = 14;
this.txtBedNumber.TextChanged += new System.EventHandler(this.txtBedNumber_TextChanged);
//
// lblGuestNumber
//
this.lblGuestNumber.AutoSize = true;
this.lblGuestNumber.Location = new System.Drawing.Point(298, 11);
this.lblGuestNumber.Name = "lblGuestNumber";
this.lblGuestNumber.Size = new System.Drawing.Size(53, 12);
this.lblGuestNumber.TabIndex = 13;
this.lblGuestNumber.Text = "入住人数";
//
// cboTypeID
//
this.cboTypeID.FormattingEnabled = true;
this.cboTypeID.Location = new System.Drawing.Point(105, 35);
this.cboTypeID.Name = "cboTypeID";
this.cboTypeID.Size = new System.Drawing.Size(78, 20);
this.cboTypeID.TabIndex = 12;
this.cboTypeID.SelectedIndexChanged += new System.EventHandler(this.cboTypeID_SelectedIndexChanged);
//
// txtDescription
//
this.txtDescription.Location = new System.Drawing.Point(12, 87);
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(562, 21);
this.txtDescription.TabIndex = 11;
//
// lblDescription
//
this.lblDescription.AutoSize = true;
this.lblDescription.Location = new System.Drawing.Point(10, 66);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Size = new System.Drawing.Size(29, 12);
this.lblDescription.TabIndex = 6;
this.lblDescription.Text = "描述";
//
// txtNumber
//
this.txtNumber.Location = new System.Drawing.Point(12, 34);
this.txtNumber.Name = "txtNumber";
this.txtNumber.Size = new System.Drawing.Size(78, 21);
this.txtNumber.TabIndex = 7;
//
// tsBtnSave
//
this.tsBtnSave.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnSave.Image")));
this.tsBtnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsBtnSave.Name = "tsBtnSave";
this.tsBtnSave.Size = new System.Drawing.Size(35, 33);
this.tsBtnSave.Text = "保存";
this.tsBtnSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsBtnSave.Click += new System.EventHandler(this.tsBtnSave_Click);
//
// tsBtnCancel
//
this.tsBtnCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnCancel.Image")));
this.tsBtnCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsBtnCancel.Name = "tsBtnCancel";
this.tsBtnCancel.Size = new System.Drawing.Size(35, 33);
this.tsBtnCancel.Text = "取消";
this.tsBtnCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsBtnCancel.Click += new System.EventHandler(this.tsBtnCancel_Click);
//
// tsBtnExit
//
this.tsBtnExit.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnExit.Image")));
this.tsBtnExit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsBtnExit.Name = "tsBtnExit";
this.tsBtnExit.Size = new System.Drawing.Size(35, 33);
this.tsBtnExit.Text = "退出";
this.tsBtnExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsBtnExit.Click += new System.EventHandler(this.tsBtnExit_Click);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -