📄 form1.designer.cs
字号:
namespace HotelManager
{
partial class Form1
{
/// <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(Form1));
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.typeid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.typename = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.typeprice = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.addbedprice = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.isaddbed = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.remark = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.panel1 = new System.Windows.Forms.Panel();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.textBox5 = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.textBox4 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
this.btnselect = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.panel1.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AllowUserToResizeColumns = false;
this.dataGridView1.AllowUserToResizeRows = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.typeid,
this.typename,
this.typeprice,
this.addbedprice,
this.isaddbed,
this.remark});
this.dataGridView1.Location = new System.Drawing.Point(0, 111);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.Size = new System.Drawing.Size(543, 189);
this.dataGridView1.TabIndex = 6;
this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
//
// typeid
//
this.typeid.DataPropertyName = "TypeId";
this.typeid.HeaderText = "房间Id";
this.typeid.Name = "typeid";
this.typeid.Visible = false;
//
// typename
//
this.typename.DataPropertyName = "TypeName";
this.typename.HeaderText = "房间类型";
this.typename.Name = "typename";
//
// typeprice
//
this.typeprice.DataPropertyName = "TypePrice";
this.typeprice.HeaderText = "价格";
this.typeprice.Name = "typeprice";
//
// addbedprice
//
this.addbedprice.DataPropertyName = "AddBedPrice";
this.addbedprice.HeaderText = "加床价格";
this.addbedprice.Name = "addbedprice";
//
// isaddbed
//
this.isaddbed.DataPropertyName = "IsAddBed";
this.isaddbed.HeaderText = "是否加床";
this.isaddbed.Name = "isaddbed";
//
// remark
//
this.remark.DataPropertyName = "Remark";
this.remark.HeaderText = "备注";
this.remark.Name = "remark";
//
// panel1
//
this.panel1.Controls.Add(this.checkBox1);
this.panel1.Controls.Add(this.textBox5);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.label5);
this.panel1.Controls.Add(this.textBox2);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.textBox4);
this.panel1.Controls.Add(this.textBox3);
this.panel1.Controls.Add(this.label4);
this.panel1.Location = new System.Drawing.Point(0, 312);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(543, 116);
this.panel1.TabIndex = 5;
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(419, 24);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(96, 16);
this.checkBox1.TabIndex = 10;
this.checkBox1.Text = "是否可以加床";
this.checkBox1.UseVisualStyleBackColor = true;
//
// textBox5
//
this.textBox5.Location = new System.Drawing.Point(12, 59);
this.textBox5.Multiline = true;
this.textBox5.Name = "textBox5";
this.textBox5.Size = new System.Drawing.Size(502, 46);
this.textBox5.TabIndex = 9;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 7);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 2;
this.label2.Text = "类型名称";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(12, 46);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(29, 12);
this.label5.TabIndex = 8;
this.label5.Text = "备注";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(12, 22);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(183, 21);
this.textBox2.TabIndex = 3;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(204, 7);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(29, 12);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -