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

📄 salarymanage.designer.cs

📁 实现企业的人事管理
💻 CS
字号:
namespace renshiguanli
{
    partial class salarycharge
    {
        /// <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.searchman = new System.Windows.Forms.Button();
            this.history = new System.Windows.Forms.Button();
            this.部门汇总 = new System.Windows.Forms.Button();
            this.salary = new System.Windows.Forms.Button();
            this.ok = new System.Windows.Forms.Button();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.EmployeeID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.name = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.BasicSalary = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.btn_showall = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            this.SuspendLayout();
            // 
            // searchman
            // 
            this.searchman.Location = new System.Drawing.Point(37, 12);
            this.searchman.Name = "searchman";
            this.searchman.Size = new System.Drawing.Size(87, 30);
            this.searchman.TabIndex = 0;
            this.searchman.Text = "员工查询";
            this.searchman.UseVisualStyleBackColor = true;
            this.searchman.Click += new System.EventHandler(this.员工查询_Click);
            // 
            // history
            // 
            this.history.Location = new System.Drawing.Point(167, 12);
            this.history.Name = "history";
            this.history.Size = new System.Drawing.Size(87, 29);
            this.history.TabIndex = 1;
            this.history.Text = "历史查询";
            this.history.UseVisualStyleBackColor = true;
            this.history.Click += new System.EventHandler(this.历史查询_Click);
            // 
            // 部门汇总
            // 
            this.部门汇总.Location = new System.Drawing.Point(294, 13);
            this.部门汇总.Name = "部门汇总";
            this.部门汇总.Size = new System.Drawing.Size(85, 29);
            this.部门汇总.TabIndex = 2;
            this.部门汇总.Text = "部门汇总";
            this.部门汇总.UseVisualStyleBackColor = true;
            this.部门汇总.Click += new System.EventHandler(this.部门汇总_Click);
            // 
            // salary
            // 
            this.salary.Location = new System.Drawing.Point(37, 346);
            this.salary.Name = "salary";
            this.salary.Size = new System.Drawing.Size(86, 28);
            this.salary.TabIndex = 3;
            this.salary.Text = "薪资设定";
            this.salary.UseVisualStyleBackColor = true;
            this.salary.Click += new System.EventHandler(this.设定薪资_Click);
            // 
            // ok
            // 
            this.ok.Location = new System.Drawing.Point(294, 347);
            this.ok.Name = "ok";
            this.ok.Size = new System.Drawing.Size(85, 26);
            this.ok.TabIndex = 4;
            this.ok.Text = "确定";
            this.ok.UseVisualStyleBackColor = true;
            this.ok.Click += new System.EventHandler(this.ok_Click);
            // 
            // dataGridView1
            // 
            this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.EmployeeID,
            this.name,
            this.BasicSalary});
            this.dataGridView1.Location = new System.Drawing.Point(37, 48);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.ReadOnly = true;
            this.dataGridView1.RowTemplate.Height = 23;
            this.dataGridView1.Size = new System.Drawing.Size(342, 293);
            this.dataGridView1.TabIndex = 0;
            this.dataGridView1.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_CellMouseClick);
            // 
            // EmployeeID
            // 
            this.EmployeeID.HeaderText = "EmployeeID";
            this.EmployeeID.Name = "EmployeeID";
            this.EmployeeID.ReadOnly = true;
            // 
            // name
            // 
            this.name.HeaderText = "Name";
            this.name.Name = "name";
            this.name.ReadOnly = true;
            // 
            // BasicSalary
            // 
            this.BasicSalary.HeaderText = "BasicSalary";
            this.BasicSalary.Name = "BasicSalary";
            this.BasicSalary.ReadOnly = true;
            // 
            // btn_showall
            // 
            this.btn_showall.Location = new System.Drawing.Point(158, 347);
            this.btn_showall.Name = "btn_showall";
            this.btn_showall.Size = new System.Drawing.Size(95, 26);
            this.btn_showall.TabIndex = 5;
            this.btn_showall.Text = "查看所有 ";
            this.btn_showall.UseVisualStyleBackColor = true;
            this.btn_showall.Click += new System.EventHandler(this.btn_showall_Click);
            // 
            // salarycharge
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.ClientSize = new System.Drawing.Size(407, 387);
            this.Controls.Add(this.btn_showall);
            this.Controls.Add(this.ok);
            this.Controls.Add(this.salary);
            this.Controls.Add(this.部门汇总);
            this.Controls.Add(this.history);
            this.Controls.Add(this.searchman);
            this.Controls.Add(this.dataGridView1);
            this.Name = "salarycharge";
            this.Text = "薪资管理";
            this.Load += new System.EventHandler(this.salarycharge_Load);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Button searchman;
        private System.Windows.Forms.Button history;
        private System.Windows.Forms.Button 部门汇总;
        private System.Windows.Forms.Button salary;
        private System.Windows.Forms.Button ok;
        private System.Windows.Forms.DataGridView dataGridView1;
        private System.Windows.Forms.DataGridViewTextBoxColumn EmployeeID;
        private System.Windows.Forms.DataGridViewTextBoxColumn name;
        private System.Windows.Forms.DataGridViewTextBoxColumn BasicSalary;
        private System.Windows.Forms.Button btn_showall;
    }
}

⌨️ 快捷键说明

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