⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmhotelmanager.designer.cs

📁 一个简单的旅 游管理系统
💻 CS
字号:
namespace Database.v4
{
    partial class frmHotelManager
    {
        /// <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.cmb_seachColumn = new System.Windows.Forms.ComboBox();
            this.txt_search = new System.Windows.Forms.TextBox();
            this.btnsearch = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.dgwHotel = new System.Windows.Forms.DataGridView();
            this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Hotelid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Hotelname = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Hotelphoto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Hotelstar = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Hoteltype = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Onehotelprice = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Twohotelprice = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Morehotelprice = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Hoteladdress = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Hotelphone = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Hotelstus = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.pageControl1 = new Database.v4.UserControl.PageControl();
            ((System.ComponentModel.ISupportInitialize)(this.dgwHotel)).BeginInit();
            this.SuspendLayout();
            // 
            // cmb_seachColumn
            // 
            this.cmb_seachColumn.FormattingEnabled = true;
            this.cmb_seachColumn.Location = new System.Drawing.Point(27, 57);
            this.cmb_seachColumn.Name = "cmb_seachColumn";
            this.cmb_seachColumn.Size = new System.Drawing.Size(97, 20);
            this.cmb_seachColumn.TabIndex = 0;
            // 
            // txt_search
            // 
            this.txt_search.Location = new System.Drawing.Point(142, 57);
            this.txt_search.Name = "txt_search";
            this.txt_search.Size = new System.Drawing.Size(88, 21);
            this.txt_search.TabIndex = 1;
            // 
            // btnsearch
            // 
            this.btnsearch.Location = new System.Drawing.Point(259, 53);
            this.btnsearch.Name = "btnsearch";
            this.btnsearch.Size = new System.Drawing.Size(85, 29);
            this.btnsearch.TabIndex = 2;
            this.btnsearch.Text = "查看酒店信息";
            this.btnsearch.UseVisualStyleBackColor = true;
            this.btnsearch.Click += new System.EventHandler(this.btnsearch_Click);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(640, 53);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(85, 29);
            this.button1.TabIndex = 3;
            this.button1.Text = "查看详细信息";
            this.button1.UseVisualStyleBackColor = true;
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(766, 53);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(85, 29);
            this.button2.TabIndex = 4;
            this.button2.Text = "删除酒店信息";
            this.button2.UseVisualStyleBackColor = true;
            // 
            // dgwHotel
            // 
            this.dgwHotel.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgwHotel.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.ID,
            this.Hotelid,
            this.Hotelname,
            this.Hotelphoto,
            this.Hotelstar,
            this.Hoteltype,
            this.Onehotelprice,
            this.Twohotelprice,
            this.Morehotelprice,
            this.Hoteladdress,
            this.Hotelphone,
            this.Hotelstus});
            this.dgwHotel.Location = new System.Drawing.Point(27, 92);
            this.dgwHotel.Name = "dgwHotel";
            this.dgwHotel.RowTemplate.Height = 23;
            this.dgwHotel.Size = new System.Drawing.Size(824, 293);
            this.dgwHotel.TabIndex = 5;
            // 
            // ID
            // 
            this.ID.HeaderText = "序号";
            this.ID.Name = "ID";
            this.ID.Visible = false;
            // 
            // Hotelid
            // 
            this.Hotelid.HeaderText = "酒店编号";
            this.Hotelid.Name = "Hotelid";
            // 
            // Hotelname
            // 
            this.Hotelname.HeaderText = "酒店名称";
            this.Hotelname.Name = "Hotelname";
            // 
            // Hotelphoto
            // 
            this.Hotelphoto.HeaderText = "酒店照片";
            this.Hotelphoto.Name = "Hotelphoto";
            // 
            // Hotelstar
            // 
            this.Hotelstar.HeaderText = "酒店星级";
            this.Hotelstar.Name = "Hotelstar";
            // 
            // Hoteltype
            // 
            this.Hoteltype.HeaderText = "酒店类型";
            this.Hoteltype.Name = "Hoteltype";
            // 
            // Onehotelprice
            // 
            this.Onehotelprice.HeaderText = "单人价格";
            this.Onehotelprice.Name = "Onehotelprice";
            // 
            // Twohotelprice
            // 
            this.Twohotelprice.HeaderText = "双人价格";
            this.Twohotelprice.Name = "Twohotelprice";
            // 
            // Morehotelprice
            // 
            this.Morehotelprice.HeaderText = "多人价格";
            this.Morehotelprice.Name = "Morehotelprice";
            // 
            // Hoteladdress
            // 
            this.Hoteladdress.HeaderText = "酒店地址";
            this.Hoteladdress.Name = "Hoteladdress";
            // 
            // Hotelphone
            // 
            this.Hotelphone.HeaderText = "酒店电话";
            this.Hotelphone.Name = "Hotelphone";
            // 
            // Hotelstus
            // 
            this.Hotelstus.HeaderText = "酒店状态";
            this.Hotelstus.Name = "Hotelstus";
            // 
            // pageControl1
            // 
            this.pageControl1.Location = new System.Drawing.Point(462, 391);
            this.pageControl1.Name = "pageControl1";
            this.pageControl1.PageIndex = 1;
            this.pageControl1.PageSize = 10;
            this.pageControl1.RecordCount = 0;
            this.pageControl1.Size = new System.Drawing.Size(389, 28);
            this.pageControl1.TabIndex = 6;
            // 
            // frmHotelManager
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(878, 428);
            this.Controls.Add(this.pageControl1);
            this.Controls.Add(this.dgwHotel);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.btnsearch);
            this.Controls.Add(this.txt_search);
            this.Controls.Add(this.cmb_seachColumn);
            this.Name = "frmHotelManager";
            this.Text = "(旅游管理系统)酒店管理员";
            this.Load += new System.EventHandler(this.frmHotelManager_Load);
            ((System.ComponentModel.ISupportInitialize)(this.dgwHotel)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.ComboBox cmb_seachColumn;
        private System.Windows.Forms.TextBox txt_search;
        private System.Windows.Forms.Button btnsearch;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Button button2;
        private System.Windows.Forms.DataGridView dgwHotel;
        private System.Windows.Forms.DataGridViewTextBoxColumn ID;
        private System.Windows.Forms.DataGridViewTextBoxColumn Hotelid;
        private System.Windows.Forms.DataGridViewTextBoxColumn Hotelname;
        private System.Windows.Forms.DataGridViewTextBoxColumn Hotelphoto;
        private System.Windows.Forms.DataGridViewTextBoxColumn Hotelstar;
        private System.Windows.Forms.DataGridViewTextBoxColumn Hoteltype;
        private System.Windows.Forms.DataGridViewTextBoxColumn Onehotelprice;
        private System.Windows.Forms.DataGridViewTextBoxColumn Twohotelprice;
        private System.Windows.Forms.DataGridViewTextBoxColumn Morehotelprice;
        private System.Windows.Forms.DataGridViewTextBoxColumn Hoteladdress;
        private System.Windows.Forms.DataGridViewTextBoxColumn Hotelphone;
        private System.Windows.Forms.DataGridViewTextBoxColumn Hotelstus;
        private Database.v4.UserControl.PageControl pageControl1;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -