📄 roomsettingform.designer.cs
字号:
namespace HotelManage
{
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.txtBed = new System.Windows.Forms.TextBox();
this.dgvRoom = new System.Windows.Forms.DataGridView();
this.Number = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.grpQuery = new System.Windows.Forms.GroupBox();
this.lblRoomNumber = new System.Windows.Forms.Label();
this.txtRoomNumber = new System.Windows.Forms.TextBox();
this.btnQuery = new System.Windows.Forms.Button();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.tsbtnAdd = new System.Windows.Forms.ToolStripButton();
this.tsbtnModify = new System.Windows.Forms.ToolStripButton();
this.deleteToolStripButton = new System.Windows.Forms.ToolStripButton();
this.tsbtnSave = new System.Windows.Forms.ToolStripButton();
this.tsbtnCancle = new System.Windows.Forms.ToolStripButton();
this.tsbtnExit = new System.Windows.Forms.ToolStripButton();
this.txtDescription = new System.Windows.Forms.TextBox();
this.lblTypeName = new System.Windows.Forms.Label();
this.lblBed = new System.Windows.Forms.Label();
this.lblPrice = new System.Windows.Forms.Label();
this.lbldescription = new System.Windows.Forms.Label();
this.lblState = new System.Windows.Forms.Label();
this.pnlContent = new System.Windows.Forms.Panel();
this.cboState = new System.Windows.Forms.ComboBox();
this.txtPrice = new System.Windows.Forms.TextBox();
this.lblGuestNumber = new System.Windows.Forms.Label();
this.txtGuestNumber = new System.Windows.Forms.TextBox();
this.cboTypeName = new System.Windows.Forms.ComboBox();
this.txtRoomNO = new System.Windows.Forms.TextBox();
this.lblRoomNO = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.dgvRoom)).BeginInit();
this.grpQuery.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.pnlContent.SuspendLayout();
this.SuspendLayout();
//
// txtBed
//
this.txtBed.Enabled = false;
this.txtBed.Location = new System.Drawing.Point(501, 23);
this.txtBed.Name = "txtBed";
this.txtBed.Size = new System.Drawing.Size(98, 21);
this.txtBed.TabIndex = 9;
//
// dgvRoom
//
this.dgvRoom.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvRoom.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvRoom.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Number,
this.Column7,
this.Column9,
this.Column4,
this.Column8,
this.ID});
this.dgvRoom.Location = new System.Drawing.Point(3, 86);
this.dgvRoom.Name = "dgvRoom";
this.dgvRoom.ReadOnly = true;
this.dgvRoom.RowTemplate.Height = 23;
this.dgvRoom.Size = new System.Drawing.Size(743, 295);
this.dgvRoom.TabIndex = 8;
this.dgvRoom.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvRoom_CellClick);
//
// Number
//
this.Number.DataPropertyName = "Number";
this.Number.HeaderText = "房间号";
this.Number.Name = "Number";
this.Number.ReadOnly = true;
//
// Column7
//
this.Column7.DataPropertyName = "BedNumber";
this.Column7.HeaderText = "床位数";
this.Column7.Name = "Column7";
this.Column7.ReadOnly = true;
//
// Column9
//
this.Column9.DataPropertyName = "State";
this.Column9.HeaderText = "状态";
this.Column9.Name = "Column9";
this.Column9.ReadOnly = true;
//
// Column4
//
this.Column4.DataPropertyName = "GuestNumber";
this.Column4.HeaderText = "入住人数";
this.Column4.Name = "Column4";
this.Column4.ReadOnly = true;
//
// Column8
//
this.Column8.DataPropertyName = "Description";
this.Column8.HeaderText = "描述";
this.Column8.Name = "Column8";
this.Column8.ReadOnly = true;
this.Column8.Width = 300;
//
// ID
//
this.ID.DataPropertyName = "RoomId";
this.ID.HeaderText = "客房ID";
this.ID.Name = "ID";
this.ID.ReadOnly = true;
this.ID.Visible = false;
//
// grpQuery
//
this.grpQuery.Controls.Add(this.lblRoomNumber);
this.grpQuery.Controls.Add(this.txtRoomNumber);
this.grpQuery.Controls.Add(this.btnQuery);
this.grpQuery.Location = new System.Drawing.Point(5, 37);
this.grpQuery.Name = "grpQuery";
this.grpQuery.Size = new System.Drawing.Size(741, 43);
this.grpQuery.TabIndex = 7;
this.grpQuery.TabStop = false;
//
// lblRoomNumber
//
this.lblRoomNumber.AutoSize = true;
this.lblRoomNumber.Location = new System.Drawing.Point(124, 17);
this.lblRoomNumber.Name = "lblRoomNumber";
this.lblRoomNumber.Size = new System.Drawing.Size(53, 12);
this.lblRoomNumber.TabIndex = 3;
this.lblRoomNumber.Text = "房间号:";
//
// txtRoomNumber
//
this.txtRoomNumber.Location = new System.Drawing.Point(184, 14);
this.txtRoomNumber.Name = "txtRoomNumber";
this.txtRoomNumber.Size = new System.Drawing.Size(294, 21);
this.txtRoomNumber.TabIndex = 1;
//
// btnQuery
//
this.btnQuery.Image = global::HotelManage.Properties.Resources.搜索;
this.btnQuery.Location = new System.Drawing.Point(532, 12);
this.btnQuery.Name = "btnQuery";
this.btnQuery.Size = new System.Drawing.Size(75, 23);
this.btnQuery.TabIndex = 0;
this.btnQuery.Text = "查询";
this.btnQuery.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.btnQuery.UseVisualStyleBackColor = true;
this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsbtnAdd,
this.tsbtnModify,
this.deleteToolStripButton,
this.tsbtnSave,
this.tsbtnCancle,
this.tsbtnExit});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(751, 35);
this.toolStrip1.TabIndex = 6;
this.toolStrip1.Text = "toolStrip1";
//
// tsbtnAdd
//
this.tsbtnAdd.Image = global::HotelManage.Properties.Resources.新增1;
this.tsbtnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbtnAdd.Name = "tsbtnAdd";
this.tsbtnAdd.Size = new System.Drawing.Size(33, 32);
this.tsbtnAdd.Text = "新增";
this.tsbtnAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbtnAdd.Click += new System.EventHandler(this.tsbtnAdd_Click);
//
// tsbtnModify
//
this.tsbtnModify.Image = global::HotelManage.Properties.Resources.修改;
this.tsbtnModify.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbtnModify.Name = "tsbtnModify";
this.tsbtnModify.Size = new System.Drawing.Size(33, 32);
this.tsbtnModify.Text = "修改";
this.tsbtnModify.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbtnModify.Click += new System.EventHandler(this.tsbtnModify_Click);
//
// deleteToolStripButton
//
this.deleteToolStripButton.Image = global::HotelManage.Properties.Resources.删除;
this.deleteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.deleteToolStripButton.Name = "deleteToolStripButton";
this.deleteToolStripButton.Size = new System.Drawing.Size(33, 32);
this.deleteToolStripButton.Text = "删除";
this.deleteToolStripButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.deleteToolStripButton.Click += new System.EventHandler(this.deleteToolStripButton_Click);
//
// tsbtnSave
//
this.tsbtnSave.Image = global::HotelManage.Properties.Resources.保存;
this.tsbtnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbtnSave.Name = "tsbtnSave";
this.tsbtnSave.Size = new System.Drawing.Size(33, 32);
this.tsbtnSave.Text = "保存";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -