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

📄 customersinfoform.designer.cs

📁 酒店管理系统
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace HotelManager
{
    partial class CustomersInfoForm
    {
        /// <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(CustomersInfoForm));
            this.lblID = new System.Windows.Forms.Label();
            this.lblCTypeID = new System.Windows.Forms.Label();
            this.lblCName = new System.Windows.Forms.Label();
            this.lblCPhone = new System.Windows.Forms.Label();
            this.txtID = new System.Windows.Forms.TextBox();
            this.txtCName = new System.Windows.Forms.TextBox();
            this.txtCPhone = new System.Windows.Forms.TextBox();
            this.cboCTypeID = new System.Windows.Forms.ComboBox();
            this.tsBntAdd = new System.Windows.Forms.ToolStripButton();
            this.tsBntUpdate = new System.Windows.Forms.ToolStripButton();
            this.tsBtnDelete = new System.Windows.Forms.ToolStripButton();
            this.tsBtnSave = new System.Windows.Forms.ToolStripButton();
            this.tsBtnCancel = new System.Windows.Forms.ToolStripButton();
            this.tsBtnExit = new System.Windows.Forms.ToolStripButton();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.lblName = new System.Windows.Forms.Label();
            this.txtSearch = new System.Windows.Forms.TextBox();
            this.btnSearch = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.dgvCustomersInfo = new System.Windows.Forms.DataGridView();
            this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.CName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.CPhone = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ct = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panInfo = new System.Windows.Forms.Panel();
            this.toolStrip1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvCustomersInfo)).BeginInit();
            this.panInfo.SuspendLayout();
            this.SuspendLayout();
            // 
            // lblID
            // 
            this.lblID.AutoSize = true;
            this.lblID.Location = new System.Drawing.Point(27, 29);
            this.lblID.Name = "lblID";
            this.lblID.Size = new System.Drawing.Size(53, 12);
            this.lblID.TabIndex = 0;
            this.lblID.Text = "身份证号";
            // 
            // lblCTypeID
            // 
            this.lblCTypeID.AutoSize = true;
            this.lblCTypeID.Location = new System.Drawing.Point(253, 78);
            this.lblCTypeID.Name = "lblCTypeID";
            this.lblCTypeID.Size = new System.Drawing.Size(53, 12);
            this.lblCTypeID.TabIndex = 1;
            this.lblCTypeID.Text = "客户类型";
            // 
            // lblCName
            // 
            this.lblCName.AutoSize = true;
            this.lblCName.Location = new System.Drawing.Point(253, 29);
            this.lblCName.Name = "lblCName";
            this.lblCName.Size = new System.Drawing.Size(53, 12);
            this.lblCName.TabIndex = 2;
            this.lblCName.Text = "客户姓名";
            // 
            // lblCPhone
            // 
            this.lblCPhone.AutoSize = true;
            this.lblCPhone.Location = new System.Drawing.Point(27, 74);
            this.lblCPhone.Name = "lblCPhone";
            this.lblCPhone.Size = new System.Drawing.Size(53, 12);
            this.lblCPhone.TabIndex = 3;
            this.lblCPhone.Text = "联系电话";
            // 
            // txtID
            // 
            this.txtID.Location = new System.Drawing.Point(98, 26);
            this.txtID.MaxLength = 18;
            this.txtID.Name = "txtID";
            this.txtID.Size = new System.Drawing.Size(129, 21);
            this.txtID.TabIndex = 4;
            this.txtID.Leave += new System.EventHandler(this.txtID_Leave);
            this.txtID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtID_KeyPress);
            // 
            // txtCName
            // 
            this.txtCName.Location = new System.Drawing.Point(324, 23);
            this.txtCName.Name = "txtCName";
            this.txtCName.Size = new System.Drawing.Size(129, 21);
            this.txtCName.TabIndex = 5;
            // 
            // txtCPhone
            // 
            this.txtCPhone.Location = new System.Drawing.Point(98, 71);
            this.txtCPhone.Name = "txtCPhone";
            this.txtCPhone.Size = new System.Drawing.Size(129, 21);
            this.txtCPhone.TabIndex = 6;
            // 
            // cboCTypeID
            // 
            this.cboCTypeID.FormattingEnabled = true;
            this.cboCTypeID.Location = new System.Drawing.Point(324, 74);
            this.cboCTypeID.Name = "cboCTypeID";
            this.cboCTypeID.Size = new System.Drawing.Size(129, 20);
            this.cboCTypeID.TabIndex = 7;
            // 
            // tsBntAdd
            // 
            this.tsBntAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsBntAdd.Image")));
            this.tsBntAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsBntAdd.Name = "tsBntAdd";
            this.tsBntAdd.Size = new System.Drawing.Size(35, 33);
            this.tsBntAdd.Text = "新增";
            this.tsBntAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsBntAdd.Click += new System.EventHandler(this.tsBntAdd_Click);
            // 
            // tsBntUpdate
            // 
            this.tsBntUpdate.Image = ((System.Drawing.Image)(resources.GetObject("tsBntUpdate.Image")));
            this.tsBntUpdate.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsBntUpdate.Name = "tsBntUpdate";
            this.tsBntUpdate.Size = new System.Drawing.Size(35, 33);
            this.tsBntUpdate.Text = "修改";
            this.tsBntUpdate.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsBntUpdate.Click += new System.EventHandler(this.tsBntUpdate_Click);
            // 
            // tsBtnDelete
            // 
            this.tsBtnDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnDelete.Image")));
            this.tsBtnDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsBtnDelete.Name = "tsBtnDelete";
            this.tsBtnDelete.Size = new System.Drawing.Size(35, 33);
            this.tsBtnDelete.Text = "删除";
            this.tsBtnDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsBtnDelete.Visible = false;
            this.tsBtnDelete.Click += new System.EventHandler(this.tsBtnDelete_Click);
            // 
            // 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";

⌨️ 快捷键说明

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