【例子介绍】C# 模拟atm取款系统及实验报告文档
实现基本的取款、存款、转帐,柜员添加用户、注销及挂失等基本功能,经理能添加柜员、删除柜员、查看员工信息等,用户名都在数据库中,先打开数据库查看信息,再登录
【相关图片】
【源码结构】
文件清单
└── 模拟atm后台管理系统
├── 模拟atm后台管理系统
│ ├── Addemployee.cs
│ ├── Addemployee.Designer.cs
│ ├── Addemployee.resx
│ ├── Altercode.cs
│ ├── Altercode.Designer.cs
│ ├── Altercode.resx
│ ├── Balance.cs
│ ├── Balance.Designer.cs
│ ├── Balance.resx
│ ├── bin
│ │ └── Debug
│ │ ├── 模拟atm后台管理系统.exe
│ │ ├── 模拟atm后台管理系统.pdb
│ │ └── 模拟atm后台管理系统.vshost.exe
│ ├── Check.cs
│ ├── Check.Designer.cs
│ ├── Check.resx
│ ├── Connect.cs
│ ├── Draw.cs
│ ├── Draw.Designer.cs
│ ├── Draw.resx
│ ├── Dropaccount.cs
│ ├── Dropaccount.Designer.cs
│ ├── Dropaccount.resx
│ ├── Dropemployee.cs
│ ├── Dropemployee.Designer.cs
│ ├── Dropemployee.resx
│ ├── Employee.cs
│ ├── Employee.Designer.cs
│ ├── Employeeinfo.cs
│ ├── Employeeinfo.Designer.cs
│ ├── Employeeinfo.resx
│ ├── Employee.resx
│ ├── Employeeshow.cs
│ ├── Employeeshow.Designer.cs
│ ├── Employeeshow.resx
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Fund.cs
│ ├── Fund.Designer.cs
│ ├── Fund.resx
│ ├── History.cs
│ ├── History.Designer.cs
│ ├── History.resx
│ ├── KeyBordHook.cs
│ ├── Manager.cs
│ ├── Manager.Designer.cs
│ ├── Manager.resx
│ ├── MouseHook.cs
│ ├── Newaccount.cs
│ ├── Newaccount.Designer.cs
│ ├── Newaccount.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── 模拟atm后台管理系统.Addemployee.resources
│ │ │ ├── 模拟atm后台管理系统.Altercode.resources
│ │ │ ├── 模拟atm后台管理系统.Balance.resources
│ │ │ ├── 模拟atm后台管理系统.Check.resources
│ │ │ ├── 模拟atm后台管理系统.csproj.GenerateResource.Cache
│ │ │ ├── 模拟atm后台管理系统.Draw.resources
│ │ │ ├── 模拟atm后台管理系统.Dropaccount.resources
│ │ │ ├── 模拟atm后台管理系统.Dropemployee.resources
│ │ │ ├── 模拟atm后台管理系统.Employeeinfo.resources
│ │ │ ├── 模拟atm后台管理系统.Employee.resources
│ │ │ ├── 模拟atm后台管理系统.Employeeshow.resources
│ │ │ ├── 模拟atm后台管理系统.exe
│ │ │ ├── 模拟atm后台管理系统.Form1.resources
│ │ │ ├── 模拟atm后台管理系统.Fund.resources
│ │ │ ├── 模拟atm后台管理系统.History.resources
│ │ │ ├── 模拟atm后台管理系统.Manager.resources
│ │ │ ├── 模拟atm后台管理系统.Newaccount.resources
│ │ │ ├── 模拟atm后台管理系统.pdb
│ │ │ ├── 模拟atm后台管理系统.Properties.Resources.resources
│ │ │ ├── 模拟atm后台管理系统.Thaw.resources
│ │ │ ├── 模拟atm后台管理系统.Usehandle.resources
│ │ │ ├── 模拟atm后台管理系统.User.resources
│ │ │ └── 模拟atm后台管理系统.Virement.resources
│ │ ├── 模拟atm后台管理系统.csproj.FileListAbsolute.txt
│ │ └── 模拟atm后台管理系统.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Thaw.cs
│ ├── Thaw.Designer.cs
│ ├── Thaw.resx
│ ├── Usehandle.cs
│ ├── Usehandle.Designer.cs
│ ├── Usehandle.resx
│ ├── User.cs
│ ├── User.Designer.cs
│ ├── User.resx
│ ├── Virement.cs
│ ├── Virement.Designer.cs
│ ├── Virement.resx
│ ├── 模拟atm后台管理系统.csproj
│ ├── 模拟atm自动取款系统_log.LDF
│ └── 模拟atm自动取款系统.mdf
├── 模拟atm后台管理系统.sln
└── 模拟atm后台管理系统.suo
9 directories, 100 files
评论