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

📄 frmadddept.designer.cs

📁 简单的人事管理系统,通过不断改进可以成为一个通用的管理系统
💻 CS
字号:
namespace HumanManage.HumanManage
{
    partial class FrmAddDept
    {
        /// <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.treeDept = new System.Windows.Forms.TreeView();
            this.labelX1 = new DevComponents.DotNetBar.LabelX();
            this.btnAddDept = new DevComponents.DotNetBar.ButtonX();
            this.btnEditDept = new DevComponents.DotNetBar.ButtonX();
            this.btnDeleteDept = new DevComponents.DotNetBar.ButtonX();
            this.bntExit = new DevComponents.DotNetBar.ButtonX();
            this.SuspendLayout();
            // 
            // treeDept
            // 
            this.treeDept.LabelEdit = true;
            this.treeDept.Location = new System.Drawing.Point(2, 30);
            this.treeDept.Name = "treeDept";
            this.treeDept.Size = new System.Drawing.Size(177, 341);
            this.treeDept.TabIndex = 0;
            this.treeDept.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeDept_AfterSelect);
            // 
            // labelX1
            // 
            this.labelX1.Location = new System.Drawing.Point(2, 3);
            this.labelX1.Name = "labelX1";
            this.labelX1.Size = new System.Drawing.Size(56, 21);
            this.labelX1.TabIndex = 1;
            this.labelX1.Text = "现有部门";
            // 
            // btnAddDept
            // 
            this.btnAddDept.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.btnAddDept.Location = new System.Drawing.Point(240, 53);
            this.btnAddDept.Name = "btnAddDept";
            this.btnAddDept.Size = new System.Drawing.Size(75, 21);
            this.btnAddDept.TabIndex = 2;
            this.btnAddDept.Text = "添加";
            this.btnAddDept.Click += new System.EventHandler(this.btnAddDept_Click);
            // 
            // btnEditDept
            // 
            this.btnEditDept.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.btnEditDept.Location = new System.Drawing.Point(240, 108);
            this.btnEditDept.Name = "btnEditDept";
            this.btnEditDept.Size = new System.Drawing.Size(75, 21);
            this.btnEditDept.TabIndex = 3;
            this.btnEditDept.Text = "编辑";
            this.btnEditDept.Click += new System.EventHandler(this.btnEditDept_Click);
            // 
            // btnDeleteDept
            // 
            this.btnDeleteDept.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.btnDeleteDept.Location = new System.Drawing.Point(240, 168);
            this.btnDeleteDept.Name = "btnDeleteDept";
            this.btnDeleteDept.Size = new System.Drawing.Size(75, 21);
            this.btnDeleteDept.TabIndex = 4;
            this.btnDeleteDept.Text = "删除";
            this.btnDeleteDept.Click += new System.EventHandler(this.btnDeleteDept_Click);
            // 
            // bntExit
            // 
            this.bntExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.bntExit.Location = new System.Drawing.Point(240, 229);
            this.bntExit.Name = "bntExit";
            this.bntExit.Size = new System.Drawing.Size(75, 21);
            this.bntExit.TabIndex = 5;
            this.bntExit.Text = "退出";
            this.bntExit.Click += new System.EventHandler(this.bntExit_Click);
            // 
            // FrmAddDept
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(384, 372);
            this.Controls.Add(this.bntExit);
            this.Controls.Add(this.btnDeleteDept);
            this.Controls.Add(this.btnEditDept);
            this.Controls.Add(this.btnAddDept);
            this.Controls.Add(this.labelX1);
            this.Controls.Add(this.treeDept);
            this.Name = "FrmAddDept";
            this.Text = "部门信息设置";
            this.Load += new System.EventHandler(this.FrmAddDept_Load);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.TreeView treeDept;
        private DevComponents.DotNetBar.LabelX labelX1;
        private DevComponents.DotNetBar.ButtonX btnAddDept;
        private DevComponents.DotNetBar.ButtonX btnEditDept;
        private DevComponents.DotNetBar.ButtonX btnDeleteDept;
        private DevComponents.DotNetBar.ButtonX bntExit;
    }
}

⌨️ 快捷键说明

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