• 大小: 6.7MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-12
  • 语言: C#
  • 标签:

资源简介

这是一个基于cs开发的初级人力资源管理系统,希望初学的小白可以学习学习

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace HRM
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }

        private void MainForm_Load(object sender EventArgs e)
        {
            login logfrm = new login();            
            logfrm.ShowDialog();
        }

        private void toolStripButton1_Click(object sender EventArgs e)
        {
            UserManagement wkm = new UserManagement();
            wkm.MdiParent = this;
            wkm.Show();
        }

        private void toolStripButton2_Click(object sender EventArgs e)
        {
            branchmaneger branma = new branchmaneger();
            branma.MdiParent = this;
            branma.Show();
        }

        private void 并联排列ToolStripMenuItem_Click(object sender EventArgs e)
        {
            this.LayoutMdi(MdiLayout.ArrangeIcons);
        }

        private void 串联排列ToolStripMenuItem_Click(object sender EventArgs e)
        {
            this.LayoutMdi(MdiLayout.Cascade);
        }

        private void 水平并排ToolStripMenuItem_Click(object sender EventArgs e)
        {
            this.LayoutMdi(MdiLayout.TileHorizontal);
        }

        private void 垂直并排ToolStripMenuItem_Click(object sender EventArgs e)
        {
            this.LayoutMdi(MdiLayout.TileVertical);
        }

        private void toolStripButton3_Click(object sender EventArgs e)
        {
            holiydaymanege holima = new holiydaymanege();
            holima.MdiParent = this;
            holima.Show();
        }

        private void toolStripButton4_Click(object sender EventArgs e)
        {
            system sys = new system();
            sys.MdiParent = this;
            sys.Show();
        }

        private void toolStripButton7_Click(object sender EventArgs e)
        {
            moneymanege monma = new moneymanege();
            monma.MdiParent = this;
            monma.Show();
        }

        private void toolStripButton6_Click(object sender EventArgs e)
        {
            addworkmanege awm = new addworkmanege();
            awm.MdiParent = this;
            awm.Show();
        }

        private void toolStripButton5_Click(object sender EventArgs e)
        {
            workmanege wkm = new workmanege();
            wkm.MdiParent = this;
            wkm.Show();
        }

        private void toolStripButton8_Click(object sender EventArgs e)
        {
            this.Close();
        }

        private void MainForm_FormClosing(object sender FormClosingEventArgs e)
        {
            if (MessageBox.Show(“是否要退出人事管理系统!“ “退出确认“ MessageBoxButtons.OKCancel MessageBoxIcon.Information)
                == DialogResult.OK)
            

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        3185  2014-08-11 15:23  51Aspx源码必读.txt
     目录           0  2014-08-11 15:25  DB_51aspx\
     文件     1657344  2010-11-17 19:31  DB_51aspx\WorkerManage.bak
     文件     3145728  2014-08-11 15:25  DB_51aspx\WorkerManage.mdf
     文件     1048576  2014-08-11 15:25  DB_51aspx\WorkerManage_1.ldf
     目录           0  2014-08-11 14:32  DepartManage\
     文件       10339  2010-11-17 19:31  DepartManage\branchmaneger.cs
     文件        6199  2010-11-17 19:31  DepartManage\branchmaneger.designer.cs
     文件        9576  2010-11-17 19:31  DepartManage\branchmaneger.resx
     文件        3586  2010-11-17 19:31  DepartManage\createbranch.cs
     文件        8594  2010-11-17 19:31  DepartManage\createbranch.designer.cs
     文件       40361  2010-11-17 19:31  DepartManage\createbranch.resx
     文件        2477  2010-11-17 19:31  DepartManage\mainbranch.cs
     文件       14181  2010-11-17 19:31  DepartManage\mainbranch.designer.cs
     文件      142125  2010-11-17 19:31  DepartManage\mainbranch.resx
     文件        1617  2010-11-17 19:31  DepartManage\selectboss.cs
     文件        4854  2010-11-17 19:31  DepartManage\selectboss.designer.cs
     文件       38049  2010-11-17 19:31  DepartManage\selectboss.resx
     目录           0  2014-08-11 14:32  GlogalManage\
     文件         719  2010-11-17 19:31  GlogalManage\GlobalData.cs
     文件       15967  2014-08-11 14:46  HRM.csproj
     文件         227  2014-08-11 14:46  HRM.csproj.user
     文件         895  2014-08-11 14:46  HRM.sln
     目录           0  2014-08-11 14:32  HolidayManage\
     文件        1220  2010-11-17 19:31  HolidayManage\Branchcollect.cs
     文件        4871  2010-11-17 19:31  HolidayManage\Branchcollect.designer.cs
     文件       48977  2010-11-17 19:31  HolidayManage\Branchcollect.resx
     文件      249144  2014-08-11 14:46  HolidayManage\HolidayManageDataSet.Designer.cs
     文件         361  2010-11-17 19:31  HolidayManage\HolidayManageDataSet.xsc
     文件       67714  2010-11-17 19:31  HolidayManage\HolidayManageDataSet.xsd
     文件        1692  2010-11-17 19:31  HolidayManage\HolidayManageDataSet.xss
............此处省略138个文件信息

评论

共有 条评论

相关资源