在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 项目管理demo

项目管理demo

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:23.06M
  • 下载次数:30
  • 浏览次数:224
  • 发布时间:2023-11-08
  • 实例类别:C#语言基础
  • 发 布 人:fangjun
  • 文件格式:.zip
  • 所需积分:2
 相关标签: demo 项目管理 DEM em 项目

实例介绍

【实例简介】项目管理demo

【实例截图】

from clipboard

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── C#项目管理demo_PM-master.zip
└── PM-master
    ├── BussinessDLL
    │   ├── BussinessDLL.csproj
    │   ├── ChangeBLL.cs
    │   ├── CommunicationBLL.cs
    │   ├── CommunicationMatrixBLL.cs
    │   ├── ContractBLL.cs
    │   ├── CostBLL.cs
    │   ├── EarningBLL.cs
    │   ├── MainFrameBLL.cs
    │   ├── MilestoneBLL.cs
    │   ├── NormalOperationBLL.cs
    │   ├── ProjectBLL.cs
    │   ├── ProjectInfoBLL.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── PubInfoBLL.cs
    │   ├── ReceivablesBLL.cs
    │   ├── ReportBLL.cs
    │   ├── ReportCostBLL.cs
    │   ├── ReportDifficutyDegreeBLL.cs
    │   ├── ReportEarningBLL.cs
    │   ├── ReportMemberRateBLL.cs
    │   ├── ReportPersonEfficieBLL.cs
    │   ├── ReportPlanBLL.cs
    │   ├── ReportProjectBLL.cs
    │   ├── ReportReceivablesBLL.cs
    │   ├── ReportSubcontractBLL.cs
    │   ├── ReportSupplierBLL.cs
    │   ├── RiskBLL.cs
    │   ├── RoutineBLL.cs
    │   ├── SettingBLL.cs
    │   ├── StakeholdersBLL.cs
    │   ├── SupervisorBLL.cs
    │   ├── SupplierBLL.cs
    │   ├── TempletTypeBLL.cs
    │   ├── TroubleBLL.cs
    │   ├── WBSBLL.cs
    │   └── WBSCodeBLL.cs
    ├── CommonDLL
    │   ├── CacheHelper.cs
    │   ├── CommonDLL.csproj
    │   ├── CommonHelper.cs
    │   ├── ConstHelper.cs
    │   ├── DateHelper.cs
    │   ├── EmailHelper.cs
    │   ├── EnumsHelper.cs
    │   ├── JsonHelper.cs
    │   ├── LogHelper.cs
    │   ├── MessageHelper.cs
    │   ├── ModelConvertHelper.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── StringExtention.cs
    │   └── XmlHelper.cs
    ├── DataAccessDLL
    │   ├── ChangeDao.cs
    │   ├── Common
    │   │   ├── BaseDao.cs
    │   │   ├── Config.cs
    │   │   ├── HttpSessionSource.cs
    │   │   ├── IRepository.cs
    │   │   ├── ISessionStorage.cs
    │   │   ├── ISessionStorageFactory.cs
    │   │   ├── NHHelper.cs
    │   │   ├── NHibernateExtensions.cs
    │   │   ├── Repository.cs
    │   │   └── ThreadSessionSource.cs
    │   ├── CommunicationMatrixDao.cs
    │   ├── ContractDao.cs
    │   ├── DataAccessDLL.csproj
    │   ├── MilestoneDAO.cs
    │   ├── NormalOperationDAO.cs
    │   ├── ProjectDao.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── PubInfoDAO.cs
    │   ├── ReceivablesDAO.cs
    │   ├── ReportCostDao.cs
    │   ├── ReportDAO.cs
    │   ├── ReportDefficutyDegreeDao.cs
    │   ├── ReportEarningDao.cs
    │   ├── ReportMemberRateDao.cs
    │   ├── ReportPersonEfficiencyDao.cs
    │   ├── ReportPlanDao.cs
    │   ├── ReportReceivablesDao.cs
    │   ├── ReportSubcontractDao.cs
    │   ├── ReportSupplierDao.cs
    │   ├── RiskDao.cs
    │   ├── RoutineDAO.cs
    │   ├── SettingDAO.cs
    │   ├── StakeholdersDao.cs
    │   ├── SupervisorDAO.cs
    │   ├── SupplierDao.cs
    │   ├── TroubleDAO.cs
    │   ├── WBSCodeDao.cs
    │   └── WBSDao.cs
    ├── DomainDLL
    │   ├── DomainDLL.csproj
    │   ├── Entity
    │   │   ├── Change.cs
    │   │   ├── ChangeFiles.cs
    │   │   ├── Communication.cs
    │   │   ├── CommunicationFXFA.cs
    │   │   ├── ContractFiles.cs
    │   │   ├── ContractJBXX.cs
    │   │   ├── ContractQKMS.cs
    │   │   ├── ContractXMZQ.cs
    │   │   ├── Cost.cs
    │   │   ├── DeliverablesFiles.cs
    │   │   ├── DeliverablesJBXX.cs
    │   │   ├── DeliverablesWork.cs
    │   │   ├── DictItem.cs
    │   │   ├── Income.cs
    │   │   ├── Milestones.cs
    │   │   ├── NodeProgress.cs
    │   │   ├── NodeTrace.cs
    │   │   ├── PNode.cs
    │   │   ├── Project.cs
    │   │   ├── PubInfo.cs
    │   │   ├── PubInfoFiles.cs
    │   │   ├── Receivables.cs
    │   │   ├── Report_Weekly.cs
    │   │   ├── Report_WeeklyFiles.cs
    │   │   ├── Risk.cs
    │   │   ├── Routine.cs
    │   │   ├── RoutineFiles.cs
    │   │   ├── RoutineTrace.cs
    │   │   ├── RoutineWork.cs
    │   │   ├── Setting.cs
    │   │   ├── Stakeholders.cs
    │   │   ├── SubContract.cs
    │   │   ├── SubContractFiles.cs
    │   │   ├── SubContractLCB.cs
    │   │   ├── SubContractSKXX.cs
    │   │   ├── Supervisor.cs
    │   │   ├── SupervisorJudge.cs
    │   │   ├── Supplier.cs
    │   │   ├── Templet.cs
    │   │   ├── TempletType.cs
    │   │   ├── Trouble.cs
    │   │   ├── TroubleFiles.cs
    │   │   ├── TroubleTrace.cs
    │   │   ├── TroubleWork.cs
    │   │   ├── WBSCode.cs
    │   │   └── Workload.cs
    │   ├── GridData.cs
    │   ├── JsonResult.cs
    │   ├── Mapping
    │   │   ├── Change.hbm.xml
    │   │   ├── ChangeFiles.hbm.xml
    │   │   ├── Communication.hbm.xml
    │   │   ├── CommunicationFXFA.hbm.xml
    │   │   ├── ContractFiles.hbm.xml
    │   │   ├── ContractJBXX.hbm.xml
    │   │   ├── ContractQKMS.hbm.xml
    │   │   ├── ContractXMZQ.hbm.xml
    │   │   ├── Cost.hbm.xml
    │   │   ├── DeliverablesFiles.hbm.xml
    │   │   ├── DeliverablesJBXX.hbm.xml
    │   │   ├── DeliverablesWork.hbm.xml
    │   │   ├── DictItem.hbm.xml
    │   │   ├── Income.hbm.xml
    │   │   ├── Milestones.hbm.xml
    │   │   ├── NodeProgress.hbm.xml
    │   │   ├── NodeTrace.hbm.xml
    │   │   ├── PNode.hbm.xml
    │   │   ├── Project.hbm.xml
    │   │   ├── PubInfo.hbm.xml
    │   │   ├── PubInfoFiles.hbm.xml
    │   │   ├── Receivables.hbm.xml
    │   │   ├── Report_Weekly.hbm.xml
    │   │   ├── Report_WeeklyFiles.hbm.xml
    │   │   ├── Risk.hbm.xml
    │   │   ├── Routine.hbm.xml
    │   │   ├── RoutineFiles.hbm.xml
    │   │   ├── RoutineTrace.hbm.xml
    │   │   ├── RoutineWork.hbm.xml
    │   │   ├── Setting.hbm.xml
    │   │   ├── Stakeholders.hbm.xml
    │   │   ├── SubContract.hbm.xml
    │   │   ├── SubContractFiles.hbm.xml
    │   │   ├── SubContractLCB.hbm.xml
    │   │   ├── SubContractSKXX.hbm.xml
    │   │   ├── Supervisor.hbm.xml
    │   │   ├── SupervisorJudge.hbm.xml
    │   │   ├── Supplier.hbm.xml
    │   │   ├── Templet.hbm.xml
    │   │   ├── TempletType.hbm.xml
    │   │   ├── Trouble.hbm.xml
    │   │   ├── TroubleFiles.hbm.xml
    │   │   ├── TroubleTrace.hbm.xml
    │   │   ├── TroubleWork.hbm.xml
    │   │   └── WBSCode.hbm.xml
    │   ├── PersistenceEntity.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── QueryField.cs
    ├── Libs
    │   ├── Aspose.Words.dll
    │   ├── Dapper.dll
    │   ├── DevComponents.DotNetBar.Design.dll
    │   ├── DevComponents.DotNetBar.SuperGrid.dll
    │   ├── DevComponents.DotNetBar2.dll
    │   ├── DevComponents.SuperGrid.Design.dll
    │   ├── DevExpress.Data.v16.2.dll
    │   ├── DevExpress.Printing.v16.2.Core.dll
    │   ├── DevExpress.Utils.v16.2.dll
    │   ├── DevExpress.XtraEditors.v16.2.dll
    │   ├── DevExpress.XtraLayout.v16.2.dll
    │   ├── DevExpress.XtraTreeList.v16.2.dll
    │   ├── ICSharpCode.SharpZipLib.dll
    │   ├── Memcached.ClientLibrary.dll
    │   ├── Microsoft.Office.Interop.Excel.dll
    │   ├── NHibernate.dll
    │   ├── NPOI.OOXML.dll
    │   ├── NPOI.OpenXml4Net.dll
    │   ├── NPOI.OpenXmlFormats.dll
    │   ├── NPOI.dll
    │   ├── Newtonsoft.Json.dll
    │   ├── Newtonsoft.Json.xml
    │   ├── Office.dll
    │   ├── System.Data.SQLite.dll
    │   └── log4net.dll
    ├── ProjectManagement
    │   ├── 256_256.ico
    │   ├── Common
    │   │   ├── BaseForm.Designer.cs
    │   │   ├── BaseForm.cs
    │   │   ├── BaseForm.resx
    │   │   ├── ComboxItem.cs
    │   │   ├── DataHelper.cs
    │   │   ├── ExportHelper.cs
    │   │   ├── FileHelper.cs
    │   │   └── NPOIHelper.cs
    │   ├── Config.xml
    │   ├── Control
    │   │   ├── PagerControl.cs
    │   │   ├── PagerControl.designer.cs
    │   │   └── PagerControl.resx
    │   ├── Forms
    │   │   ├── Income
    │   │   │   ├── Cost.Designer.cs
    │   │   │   ├── Cost.cs
    │   │   │   ├── Cost.resx
    │   │   │   ├── Earning.Designer.cs
    │   │   │   ├── Earning.cs
    │   │   │   ├── Earning.resx
    │   │   │   ├── Receivables.Designer.cs
    │   │   │   ├── Receivables.cs
    │   │   │   └── Receivables.resx
    │   │   ├── InfomationPublish
    │   │   │   ├── InfomationPublish.Designer.cs
    │   │   │   ├── InfomationPublish.cs
    │   │   │   ├── InfomationPublish.resx
    │   │   │   ├── PublishConfigure.Designer.cs
    │   │   │   ├── PublishConfigure.cs
    │   │   │   ├── PublishConfigure.resx
    │   │   │   ├── PublishHistory.Designer.cs
    │   │   │   ├── PublishHistory.cs
    │   │   │   └── PublishHistory.resx
    │   │   ├── Others
    │   │   │   ├── Change.Designer.cs
    │   │   │   ├── Change.cs
    │   │   │   ├── Change.resx
    │   │   │   ├── EnterInfo.Designer.cs
    │   │   │   ├── EnterInfo.cs
    │   │   │   ├── EnterInfo.resx
    │   │   │   ├── Risk.Designer.cs
    │   │   │   ├── Risk.cs
    │   │   │   ├── Risk.resx
    │   │   │   ├── Routine.Designer.cs
    │   │   │   ├── Routine.cs
    │   │   │   ├── Routine.resx
    │   │   │   ├── Trouble.Designer.cs
    │   │   │   ├── Trouble.cs
    │   │   │   ├── Trouble.resx
    │   │   │   ├── Weekly.Designer.cs
    │   │   │   ├── Weekly.cs
    │   │   │   ├── Weekly.resx
    │   │   │   ├── WeeklyHistory.Designer.cs
    │   │   │   ├── WeeklyHistory.cs
    │   │   │   ├── WeeklyHistory.resx
    │   │   │   ├── WeeklyPreview.Designer.cs
    │   │   │   ├── WeeklyPreview.cs
    │   │   │   └── WeeklyPreview.resx
    │   │   ├── Project
    │   │   │   ├── Milestone.Designer.cs
    │   │   │   ├── Milestone.cs
    │   │   │   ├── Milestone.resx
    │   │   │   ├── NewProject.Designer.cs
    │   │   │   ├── NewProject.cs
    │   │   │   ├── NewProject.resx
    │   │   │   ├── ProjectInfo.Designer.cs
    │   │   │   ├── ProjectInfo.cs
    │   │   │   ├── ProjectInfo.resx
    │   │   │   ├── ProjectList.Designer.cs
    │   │   │   ├── ProjectList.cs
    │   │   │   ├── Supervisor.Designer.cs
    │   │   │   ├── Supervisor.cs
    │   │   │   └── Supervisor.resx
    │   │   ├── Report
    │   │   │   ├── Report_Cost.Designer.cs
    │   │   │   ├── Report_Cost.cs
    │   │   │   ├── Report_Cost.resx
    │   │   │   ├── Report_DifficutyDegree.Designer.cs
    │   │   │   ├── Report_DifficutyDegree.cs
    │   │   │   ├── Report_DifficutyDegree.resx
    │   │   │   ├── Report_DifficutyDegreeNew.Designer.cs
    │   │   │   ├── Report_DifficutyDegreeNew.cs
    │   │   │   ├── Report_DifficutyDegreeNew.resx
    │   │   │   ├── Report_Earning.Designer.cs
    │   │   │   ├── Report_Earning.cs
    │   │   │   ├── Report_Earning.resx
    │   │   │   ├── Report_MemberContributionRate.Designer.cs
    │   │   │   ├── Report_MemberContributionRate.cs
    │   │   │   ├── Report_MemberContributionRate.resx
    │   │   │   ├── Report_PersonnelExecutiveEfficiency.Designer.cs
    │   │   │   ├── Report_PersonnelExecutiveEfficiency.cs
    │   │   │   ├── Report_PersonnelExecutiveEfficiency.resx
    │   │   │   ├── Report_Plan.Designer.cs
    │   │   │   ├── Report_Plan.cs
    │   │   │   ├── Report_Plan.resx
    │   │   │   ├── Report_ProjectInfo.Designer.cs
    │   │   │   ├── Report_ProjectInfo.cs
    │   │   │   ├── Report_ProjectInfo.resx
    │   │   │   ├── Report_Receivables.Designer.cs
    │   │   │   ├── Report_Receivables.cs
    │   │   │   ├── Report_Receivables.resx
    │   │   │   ├── Report_Recentwork.Designer.cs
    │   │   │   ├── Report_Recentwork.cs
    │   │   │   ├── Report_Recentwork.resx
    │   │   │   ├── Report_Subcontract.Designer.cs
    │   │   │   ├── Report_Subcontract.cs
    │   │   │   ├── Report_Subcontract.resx
    │   │   │   ├── Report_Subcontract_Setting.Designer.cs
    │   │   │   ├── Report_Subcontract_Setting.cs
    │   │   │   ├── Report_Subcontract_Setting.resx
    │   │   │   ├── Report_Supplier.Designer.cs
    │   │   │   ├── Report_Supplier.cs
    │   │   │   ├── Report_Supplier.resx
    │   │   │   ├── Report_Supplier_Setting.Designer.cs
    │   │   │   ├── Report_Supplier_Setting.cs
    │   │   │   ├── Report_Supplier_Setting.resx
    │   │   │   ├── Report_ToBeSolvedTrouble.Designer.cs
    │   │   │   ├── Report_ToBeSolvedTrouble.cs
    │   │   │   ├── Report_ToBeSolvedTrouble.resx
    │   │   │   ├── Report_Weekly.Designer.cs
    │   │   │   ├── Report_Weekly.cs
    │   │   │   └── Report_Weekly.resx
    │   │   ├── Stakeholder
    │   │   │   ├── Communication.Designer.cs
    │   │   │   ├── Communication.cs
    │   │   │   ├── Communication.resx
    │   │   │   ├── CommunicationMatrix.Designer.cs
    │   │   │   ├── CommunicationMatrix.cs
    │   │   │   ├── CommunicationMatrix.resx
    │   │   │   ├── SendMail.Designer.cs
    │   │   │   ├── SendMail.cs
    │   │   │   ├── SendMail.resx
    │   │   │   ├── Stakeholder.Designer.cs
    │   │   │   ├── Stakeholder.cs
    │   │   │   └── Stakeholder.resx
    │   │   ├── Subcontract
    │   │   │   ├── Contract.Designer.cs
    │   │   │   ├── Contract.cs
    │   │   │   ├── Contract.resx
    │   │   │   ├── Supplier.Designer.cs
    │   │   │   ├── Supplier.cs
    │   │   │   └── Supplier.resx
    │   │   ├── Template
    │   │   │   ├── UpdateTemplate.Designer.cs
    │   │   │   ├── UpdateTemplate.cs
    │   │   │   └── UpdateTemplate.resx
    │   │   ├── WBS
    │   │   │   ├── NewManager.Designer.cs
    │   │   │   ├── NewManager.cs
    │   │   │   ├── NewManager.resx
    │   │   │   ├── ReName.Designer.cs
    │   │   │   ├── ReName.cs
    │   │   │   ├── ReName.resx
    │   │   │   ├── WBS.Designer.cs
    │   │   │   ├── WBS.cs
    │   │   │   ├── WBS.resx
    │   │   │   ├── WBSCode.Designer.cs
    │   │   │   ├── WBSCode.cs
    │   │   │   └── WBSCode.resx
    │   │   └── Warning
    │   │       ├── WarningConfigure.Designer.cs
    │   │       ├── WarningConfigure.cs
    │   │       ├── WarningConfigure.resx
    │   │       ├── WarningList.Designer.cs
    │   │       ├── WarningList.cs
    │   │       └── WarningList.resx
    │   ├── MainFrame.Designer.cs
    │   ├── MainFrame.cs
    │   ├── MainFrame.resx
    │   ├── Message.xml
    │   ├── NormalOperation.Designer.cs
    │   ├── NormalOperation.cs
    │   ├── NormalOperation.resx
    │   ├── Program.cs
    │   ├── ProjectManagement.csproj
    │   ├── ProjectManagement.db
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   ├── Settings.settings
    │   │   └── licenses.licx
    │   ├── Setting.Designer.cs
    │   ├── Setting.cs
    │   ├── Setting.resx
    │   ├── StartPage.Designer.cs
    │   ├── StartPage.cs
    │   ├── StartPage.resx
    │   ├── Template
    │   │   ├── WBS模板.xlsx
    │   │   └── 项目周报模板.xlsx
    │   ├── app.config
    │   └── 文档
    │       ├── 256_256.ico
    │       ├── 256_256.png
    │       ├── 32_32.png
    │       ├── 64_64.png
    │       ├── ProManagement.DM1
    │       ├── ProjectManagement.db
    │       ├── WBS模板.xlsx
    │       ├── sqlit3_sql.txt
    │       ├── 图标.ai
    │       ├── 图标.ico
    │       ├── 图标.png
    │       ├── 图标1-01.ico
    │       ├── 图标1-01.png
    │       ├── 图标1.ai
    │       ├── 未标题-1.ico
    │       ├── 未标题-1.png
    │       ├── 更新脚本
    │       │   ├── 20170526.txt
    │       │   ├── 20170527.txt
    │       │   ├── 20170602.txt
    │       │   ├── 20170605(Cmj).txt
    │       │   ├── 20170605(朱冠军).txt
    │       │   ├── 20170606(朱冠军).txt
    │       │   ├── 20170606.txt
    │       │   └── 20170701.txt
    │       ├── 项目管理-图标.pptx
    │       ├── 项目管理.png
    │       ├── 项目管理.psd
    │       ├── 临时问题.txt
    │       ├── 成员贡献率.xlsx
    │       ├── 问题点一览.xlsx
    │       ├── 删除项目脚本.txt
    │       ├── 人员执行效率.xlsx
    │       ├── 工作难度系数.xlsx
    │       └── 项目管理系统开发计划.xlsx
    ├── ProjectManagement.sln
    └── README.md

31 directories, 429 files


实例下载地址

项目管理demo

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 5927 发表于: 2023-11-16 11:29 22
报错。。。 严重性 代码 说明 项目 文件 行 禁止显示状态 错误 找不到资源文件“Forms\Project\ProjectList.resx”。 ProjectManagement

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警