实例介绍
【实例简介】C#水电管理系统[princehaku]
设计一个水电管理信息系统,能够对高校的水电费用进行管理,包括了登记费用,查询费用,以及住户信息管理等。在设计时要考虑到学生和教工在用水电时的不同,学生可以免费使用一定额度的水电,超过这个额度的随便以后必须自费使用,且自费部分水电费的价格标准要高于教工的收费标准(主要是节约资源)
【实例截图】
【核心代码】
.
├── BackgroundServise
│ ├── BackgroundServise.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── BackgroundServise.vshost.exe
│ │ │ └── BackgroundServise.vshost.exe.manifest
│ │ └── x86
│ │ └── Debug
│ │ ├── BackgroundServise.exe
│ │ ├── BackgroundServise.pdb
│ │ ├── BackgroundServise.vshost.exe
│ │ ├── BackgroundServise.vshost.exe.manifest
│ │ ├── ReadFile.dll
│ │ ├── ReadFile.pdb
│ │ └── UserData
│ │ ├── default.dba
│ │ ├── wegDbfile-200403080326.rdb
│ │ ├── wegDbfile-200702030121.rdb
│ │ ├── wegDbfile-200709020326.rdb
│ │ ├── wegDbfile-200805030326.rdb
│ │ └── wegDbfile-200805040329.rdb
│ └── obj
│ ├── Debug
│ │ └── TempPE
│ └── x86
│ └── Debug
│ ├── BackgroundServise.csproj.FileListAbsolute.txt
│ ├── BackgroundServise.exe
│ ├── BackgroundServise.pdb
│ ├── ResolveAssemblyReference.cache
│ └── TempPE
├── My project
│ ├── AboutBox.Designer.cs
│ ├── AboutBox.cs
│ ├── AboutBox.resx
│ ├── BIN
│ │ ├── Debug
│ │ │ ├── Database
│ │ │ │ ├── PWD.mdb
│ │ │ │ └── data.mdb
│ │ │ ├── Readfile.dll
│ │ │ ├── Readfile.pdb
│ │ │ ├── Resources
│ │ │ │ ├── Blash1.bmp
│ │ │ │ ├── png-0005.png
│ │ │ │ ├── png-0007.png
│ │ │ │ └── png-0057.png
│ │ │ ├── System.Data.dll
│ │ │ ├── System.Deployment.dll
│ │ │ ├── System.Drawing.dll
│ │ │ ├── System.Windows.Forms.dll
│ │ │ ├── System.Xml.dll
│ │ │ ├── System.dll
│ │ │ ├── UserData
│ │ │ │ └── default.dba
│ │ │ ├── app.publish
│ │ │ │ ├── Application Files
│ │ │ │ │ └── 水电气管理系统_1_1_0_0
│ │ │ │ │ ├── Database
│ │ │ │ │ │ ├── PWD.mdb.deploy
│ │ │ │ │ │ └── data.mdb.deploy
│ │ │ │ │ ├── Readfile.dll.deploy
│ │ │ │ │ ├── Resources
│ │ │ │ │ │ └── Icon1.ico.deploy
│ │ │ │ │ ├── 水电气管理系统.exe.config.deploy
│ │ │ │ │ ├── 水电气管理系统.exe.deploy
│ │ │ │ │ └── 水电气管理系统.exe.manifest
│ │ │ │ ├── setup.exe
│ │ │ │ └── 水电气管理系统.application
│ │ │ ├── config.ini
│ │ │ ├── 水电气管理系统.application
│ │ │ ├── 水电气管理系统.exe
│ │ │ ├── 水电气管理系统.exe.config
│ │ │ ├── 水电气管理系统.exe.manifest
│ │ │ └── 水电气管理系统.pdb
│ │ └── x86
│ │ ├── Debug
│ │ │ ├── Database
│ │ │ │ ├── PWD.mdb
│ │ │ │ └── data.mdb
│ │ │ ├── Readfile.dll
│ │ │ ├── Readfile.pdb
│ │ │ ├── Resources
│ │ │ │ ├── Blash1.bmp
│ │ │ │ ├── Icon1.ico
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── png-0005.png
│ │ │ │ ├── png-0007.png
│ │ │ │ ├── png-0048.png
│ │ │ │ ├── png-0057.png
│ │ │ │ └── png-0652.png
│ │ │ ├── System.Data.dll
│ │ │ ├── System.Deployment.dll
│ │ │ ├── System.Drawing.dll
│ │ │ ├── System.Windows.Forms.dll
│ │ │ ├── System.Xml.dll
│ │ │ ├── System.dll
│ │ │ ├── UserData
│ │ │ │ ├── default.dba
│ │ │ │ ├── wegDbfile-1231231231275.rdb
│ │ │ │ ├── wegDbfile-200403080326.rdb
│ │ │ │ ├── wegDbfile-200702030121.rdb
│ │ │ │ ├── wegDbfile-200709020326.rdb
│ │ │ │ ├── wegDbfile-200805030326.rdb
│ │ │ │ └── wegDbfile-200805040329.rdb
│ │ │ ├── app.publish
│ │ │ │ ├── Application Files
│ │ │ │ │ └── 水电气管理系统_1_1_0_1
│ │ │ │ │ ├── Database
│ │ │ │ │ │ ├── PWD.mdb.deploy
│ │ │ │ │ │ └── data.mdb.deploy
│ │ │ │ │ ├── Readfile.dll.deploy
│ │ │ │ │ ├── Resources
│ │ │ │ │ │ └── Icon1.ico.deploy
│ │ │ │ │ ├── 水电气管理系统.exe.config.deploy
│ │ │ │ │ ├── 水电气管理系统.exe.deploy
│ │ │ │ │ └── 水电气管理系统.exe.manifest
│ │ │ │ ├── setup.exe
│ │ │ │ └── 水电气管理系统.application
│ │ │ ├── config.ini
│ │ │ ├── 水电w管理系统.vshost.exe.config
│ │ │ ├── 水电管理系统.vshost.exe.config
│ │ │ ├── 水电气管理系统.application
│ │ │ ├── 水电气管理系统.exe
│ │ │ ├── 水电气管理系统.exe.config
│ │ │ ├── 水电气管理系统.exe.manifest
│ │ │ ├── 水电气管理系统.pdb
│ │ │ ├── 水电气管理系统.vshost.application
│ │ │ ├── 水电气管理系统.vshost.exe
│ │ │ └── 水电气管理系统.vshost.exe.config
│ │ └── Release
│ ├── ClassDiagram.cd
│ ├── Database
│ │ ├── PWD.mdb
│ │ └── data.mdb
│ ├── Launcher.Designer.cs
│ ├── Launcher.cs
│ ├── Launcher.resx
│ ├── My project.csproj
│ ├── My project.csproj.user
│ ├── Net.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ ├── Settings.settings
│ │ └── app.manifest
│ ├── Resources
│ │ ├── Blash1.bmp
│ │ ├── Icon1.ico
│ │ ├── png-0005.png
│ │ ├── png-0007.png
│ │ ├── png-0048.png
│ │ ├── png-0057.png
│ │ └── png-0652.png
│ ├── Settings.cs
│ ├── UserData
│ │ ├── default.dba
│ │ ├── wegDbfile-200403080326.rdb
│ │ ├── wegDbfile-200702030121.rdb
│ │ ├── wegDbfile-200709020326.rdb
│ │ ├── wegDbfile-200805030326.rdb
│ │ └── wegDbfile-200805040329.rdb
│ ├── app.config
│ ├── config.ini
│ ├── dataDataSet.Designer.cs
│ ├── dataDataSet.cs
│ ├── dataDataSet.xsc
│ ├── dataDataSet.xsd
│ ├── dataDataSet.xss
│ ├── detail.Designer.cs
│ ├── detail.cs
│ ├── detail.resx
│ ├── main.Designer.cs
│ ├── main.cs
│ ├── main.resx
│ └── obj
│ ├── Debug
│ │ ├── My project.csproj.FileListAbsolute.txt
│ │ ├── My project.csproj.GenerateResource.Cache
│ │ ├── My project.csproj.ResolveComReference.cache
│ │ ├── My_project.AboutBox.resources
│ │ ├── My_project.Launcher.resources
│ │ ├── My_project.Properties.Resources.resources
│ │ ├── My_project.adddata.resources
│ │ ├── My_project.detail.resources
│ │ ├── My_project.mainForm.resources
│ │ ├── Refactor
│ │ ├── TempPE
│ │ │ ├── DataSet1.Designer.cs.dll
│ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ └── dataDataSet.Designer.cs.dll
│ │ ├── 水电气管理系统.TrustInfo.xml
│ │ ├── 水电气管理系统.application
│ │ ├── 水电气管理系统.exe
│ │ ├── 水电气管理系统.exe.manifest
│ │ └── 水电气管理系统.pdb
│ ├── My project.csproj.FileList.txt
│ ├── Release
│ │ ├── My project.csproj.GenerateResource.Cache
│ │ ├── My project.exe
│ │ ├── My project.pdb
│ │ ├── My_project.Properties.Resources.resources
│ │ ├── My_project.mainForm.resources
│ │ ├── Refactor
│ │ └── TempPE
│ ├── x64
│ │ └── Debug
│ │ ├── My project.csproj.FileListAbsolute.txt
│ │ ├── My project.csproj.GenerateResource.Cache
│ │ ├── My project.csproj.ResolveComReference.cache
│ │ ├── My_project.AboutBox.resources
│ │ ├── My_project.Launcher.resources
│ │ ├── My_project.MainForm.resources
│ │ ├── My_project.Properties.Resources.resources
│ │ ├── TempPE
│ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ └── dataDataSet.Designer.cs.dll
│ │ ├── 水电管理系统.exe
│ │ └── 水电管理系统.pdb
│ └── x86
│ ├── Debug
│ │ ├── My project.csproj.FileListAbsolute.txt
│ │ ├── My project.csproj.GenerateResource.Cache
│ │ ├── My project.csproj.ResolveComReference.cache
│ │ ├── My_project.AboutBox.resources
│ │ ├── My_project.Launcher.resources
│ │ ├── My_project.MainForm.resources
│ │ ├── My_project.Properties.Resources.resources
│ │ ├── My_project.detail.resources
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ └── dataDataSet.Designer.cs.dll
│ │ ├── 水电气管理系统.TrustInfo.xml
│ │ ├── 水电气管理系统.application
│ │ ├── 水电气管理系统.exe
│ │ ├── 水电气管理系统.exe.manifest
│ │ └── 水电气管理系统.pdb
│ └── Release
│ ├── My project.csproj.ResolveComReference.cache
│ └── TempPE
│ ├── Properties.Resources.Designer.cs.dll
│ └── dataDataSet.Designer.cs.dll
├── My project.sln
├── My project.suo
└── ReadFile
├── Class.cs
├── Properties
│ └── AssemblyInfo.cs
├── ReadFile.csproj
├── bin
│ ├── Debug
│ │ ├── ReadFile.dll
│ │ └── ReadFile.pdb
│ └── Release
└── obj
├── Debug
│ ├── ReadFile.dll
│ ├── ReadFile.pdb
│ ├── Readfile.csproj.FileListAbsolute.txt
│ └── TempPE
├── ReadFile.csproj.FileList.txt
└── Release
└── TempPE
65 directories, 206 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论