嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 3 元微信扫码支付:3 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
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