停车场收费管理系统winfrom
管理员登陆后可以费用设置 修改密码 开户 充值 注销 入库 出库 退出
本项目通过dat文件格式存储数据
public static void Load()
{
string path = Application.StartupPath + @"\data\data2.dat";
if (File.Exists(path))
{
FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read);
BinaryFormatter bw = new BinaryFormatter();
Park = bw.Deserialize(fs) as ParkingMagager;
fs.Close();
}
}
项目获取:
项目获取:typora: typora/img (gitee.com)
备用项目获取链接1:yifeiyixiang/kamo: 源码下载 (github.com)
备用项目获取链接2: 卡莫_ / Kamo · GitCode