C#基于CS开发的人力资源管理系统


这是一个基于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_51aspxWorkerManage.bak
     文件     3145728  2014-08-11 15:25  DB_51aspxWorkerManage.mdf
     文件     1048576  2014-08-11 15:25  DB_51aspxWorkerManage_1.ldf
     目录           0  2014-08-11 14:32  DepartManage
     文件       10339  2010-11-17 19:31  DepartManageranchmaneger.cs
     文件        6199  2010-11-17 19:31  DepartManageranchmaneger.designer.cs
     文件        9576  2010-11-17 19:31  DepartManageranchmaneger.resx
     文件        3586  2010-11-17 19:31  DepartManagecreatebranch.cs
     文件        8594  2010-11-17 19:31  DepartManagecreatebranch.designer.cs
     文件       40361  2010-11-17 19:31  DepartManagecreatebranch.resx
     文件        2477  2010-11-17 19:31  DepartManagemainbranch.cs
     文件       14181  2010-11-17 19:31  DepartManagemainbranch.designer.cs
     文件      142125  2010-11-17 19:31  DepartManagemainbranch.resx
     文件        1617  2010-11-17 19:31  DepartManageselectboss.cs
     文件        4854  2010-11-17 19:31  DepartManageselectboss.designer.cs
     文件       38049  2010-11-17 19:31  DepartManageselectboss.resx
     目录           0  2014-08-11 14:32  GlogalManage
     文件         719  2010-11-17 19:31  GlogalManageGlobalData.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  HolidayManageBranchcollect.cs
     文件        4871  2010-11-17 19:31  HolidayManageBranchcollect.designer.cs
     文件       48977  2010-11-17 19:31  HolidayManageBranchcollect.resx
     文件      249144  2014-08-11 14:46  HolidayManageHolidayManageDataSet.Designer.cs
     文件         361  2010-11-17 19:31  HolidayManageHolidayManageDataSet.xsc
     文件       67714  2010-11-17 19:31  HolidayManageHolidayManageDataSet.xsd
     文件        1692  2010-11-17 19:31  HolidayManageHolidayManageDataSet.xss
............此处省略138个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)