在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → c#超市管理系统.rar

c#超市管理系统.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:17.92M
  • 下载次数:7
  • 浏览次数:82
  • 发布时间:2021-11-29
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
包括售货、入库、等一整套的超市管理体系 附源代码。数据库备份等
【实例截图】
【核心代码】
4744300845210159228.rar
└── 超市管理系统
├── data
│   ├── Users_log.ldf
│   └── Users.mdf
├── 超市管理系统
│   ├── App.config
│   ├── bin
│   │   ├── Debug
│   │   │   ├── 超市管理系统.exe
│   │   │   ├── 超市管理系统.exe.config
│   │   │   ├── 超市管理系统.pdb
│   │   │   ├── 超市管理系统.vshost.exe
│   │   │   ├── 超市管理系统.vshost.exe.config
│   │   │   └── 超市管理系统.vshost.exe.manifest
│   │   └── Release
│   ├── Common.cs
│   ├── Employee
│   │   ├── Employees.cs
│   │   ├── FormEmployee.cs
│   │   ├── FormEmployee.Designer.cs
│   │   ├── FormEmployeeEdit.cs
│   │   ├── FormEmployeeEdit.Designer.cs
│   │   ├── FormEmployeeEdit.resx
│   │   └── FormEmployee.resx
│   ├── FormAbout.cs
│   ├── FormAbout.Designer.cs
│   ├── FormAbout.resx
│   ├── FormMain.cs
│   ├── FormMain.Designer.cs
│   ├── FormMain.resx
│   ├── InStorage
│   │   ├── FormInStorage.cs
│   │   ├── FormInStorage.Designer.cs
│   │   ├── FormInStorageEdit.cs
│   │   ├── FormInStorageEdit.Designer.cs
│   │   ├── FormInStorageEdit.resx
│   │   ├── FormInStorageRed.cs
│   │   ├── FormInStorageRed.Designer.cs
│   │   ├── FormInStorageRed.resx
│   │   ├── FormInStorage.resx
│   │   └── Storage.cs
│   ├── Landing
│   │   ├── FormCome.cs
│   │   ├── FormCome.Designer.cs
│   │   ├── FormCome.resx
│   │   ├── FormLand.cs
│   │   ├── FormLand.Designer.cs
│   │   ├── FormLand.resx
│   │   ├── FormPwc.cs
│   │   ├── FormPwc.Designer.cs
│   │   ├── FormPwc.resx
│   │   ├── FormReg.cs
│   │   ├── FormReg.Designer.cs
│   │   ├── FormReg.resx
│   │   ├── FormTC.cs
│   │   ├── FormTC.Designer.cs
│   │   └── FormTC.resx
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── GenerateResource.read.1.tlog
│   │   ├── GenerateResource.write.1.tlog
│   │   ├── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── 超市管理系统.csproj.FileListAbsolute.txt
│   │   ├── 超市管理系统.Employee.FormEmployeeEdit.resources
│   │   ├── 超市管理系统.Employee.FormEmployee.resources
│   │   ├── 超市管理系统.exe
│   │   ├── 超市管理系统.FormAbout.resources
│   │   ├── 超市管理系统.FormLand.resources
│   │   ├── 超市管理系统.FormMain.resources
│   │   ├── 超市管理系统.FormProductEdit.resources
│   │   ├── 超市管理系统.FormProduct.resources
│   │   ├── 超市管理系统.FormPwc.resources
│   │   ├── 超市管理系统.FormReg.resources
│   │   ├── 超市管理系统.InStorage.FormInStorageEdit.resources
│   │   ├── 超市管理系统.InStorage.FormInStorageRed.resources
│   │   ├── 超市管理系统.InStorage.FormInStorage.resources
│   │   ├── 超市管理系统.Landing.FormCome.resources
│   │   ├── 超市管理系统.Landing.FormTC.resources
│   │   ├── 超市管理系统.pdb
│   │   ├── 超市管理系统.ProductType.FormProductTypeEdit.resources
│   │   ├── 超市管理系统.ProductType.FormProductType.resources
│   │   ├── 超市管理系统.Properties.Resources.resources
│   │   ├── 超市管理系统.Shopping.FormShopEdit.resources
│   │   ├── 超市管理系统.Shopping.FormShopRed.resources
│   │   ├── 超市管理系统.Shopping.FormShop.resources
│   │   ├── 超市管理系统.Supplier.FormSupplierEdit.resources
│   │   ├── 超市管理系统.Supplier.FormSupplier.resources
│   │   ├── 超市管理系统.User.FormUserEdit.resources
│   │   └── 超市管理系统.User.FormUser.resources
│   ├── Product
│   │   ├── FormProduct.cs
│   │   ├── FormProduct.Designer.cs
│   │   ├── FormProductEdit.cs
│   │   ├── FormProductEdit.Designer.cs
│   │   ├── FormProductEdit.resx
│   │   ├── FormProduct.resx
│   │   └── Product.cs
│   ├── ProductType
│   │   ├── FormProductType.cs
│   │   ├── FormProductType.Designer.cs
│   │   ├── FormProductTypeEdit.cs
│   │   ├── FormProductTypeEdit.Designer.cs
│   │   ├── FormProductTypeEdit.resx
│   │   ├── FormProductType.resx
│   │   └── ProductType.cs
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Resources
│   │   ├── 039C38B362008BDF4FC5A7CBC00FD38A.jpg
│   │   ├── 0879D2BB48EAB9EB301CDB93463B8C88.jpg
│   │   ├── 0DD0B5A056D33F1AE0DFC17271AC19EE.jpg
│   │   ├── 123454.png
│   │   ├── 12cfbda01a74c8a4a8c26c655815e5d6.jpg
│   │   ├── 12.jpg
│   │   ├── 1DEFC413C14FF5DDF0C3C11C01EA8B68.jpg
│   │   ├── 1f39ae668db944eb-3d950835708ad9b3-37104bcdb64cfbaf1c5caed2da1e28c3_i.jpg
│   │   ├── 201206011530578817.gif
│   │   ├── 20131022940414682741.jpg
│   │   ├── 20332358687853d8-37a22cd3402b85cf-5293e951172a34ff33734e03c9e87042_i.jpg
│   │   ├── 22105655781.jpg
│   │   ├── 236b0baa6b0504a4-33debbe9607cc33b-924db9716295e26681a4937560942b98.jpg
│   │   ├── 27340[1].jpg
│   │   ├── 2AC6ECF04BFBAD07BA579A414F1DD783.jpg
│   │   ├── 2ad3dee47812f378-1aa54520ff37cfef-5ce883db87f3c170436b410dfa8a55ce_i.jpg
│   │   ├── 2C4AB80FB71A34B85F24C94911F94DE8.jpg
│   │   ├── 31.gif
│   │   ├── 3903E5B251A4BD9AB2EC229A236A1425.jpg
│   │   ├── 3.gif
│   │   ├── 4264F5887E240EFA973B66F58D9F3F1A.jpg
│   │   ├── 4B13CE257E8369D4172A148845A2F9F0.jpg
│   │   ├── 546539_110308007_2.jpg
│   │   ├── 55f9d8a6be868c43-cfef2dce800cbbf9-7d1527e25352ab4480d5c3275961a94b_i.jpg
│   │   ├── 55.gif
│   │   ├── 56DE78761EFBE5D8A7EF7AC4B3135CEB.jpg
│   │   ├── 58e82d844f358d20aa8cd78acbf86df7.gif
│   │   ├── 5C352291E6316F85A0EB1206BC2E3473.jpg
│   │   ├── 62.gif
│   │   ├── 6833FEECCE445BAAB31E9DFA9665DBF6.jpg
│   │   ├── 6EC4A508F71F6D5B1AA39FDC588086BE.jpg
│   │   ├── 776ab13ac1f12a889a4768e2cfdd40aa.jpg
│   │   ├── 77DF51259AF1172A038A3C303A88B3C4.jpg
│   │   ├── 7F3362D5FE8DED6E8B96BB765B5AB13E.jpg
│   │   ├── 841f9a3d2cf9dce5-c17fefa1a33041df-325c95f75941e007861995d369acb12f_i.jpg
│   │   ├── 8681E79AE08D6188F1EBD2E8A712CEA3.jpg
│   │   ├── 8B0A62D1505DD3B71920D09CEDCBFDF8.jpg
│   │   ├── 97D46300638D778D5A36D98D1041C0CF.jpg
│   │   ├── 99095b934d947e01-74bd29499e9845c2-6d8b1833ae82d31d5db603eeefc6e860_i.jpg
│   │   ├── 9e84b63c026b984d-46b9414ca219bcc3-e9e0434c599f900b7bdadd1964e5b97c_i.jpg
│   │   ├── a3b0021f992eeecb95ecf06ff06b0603.jpg
│   │   ├── ac75323d6b6de243-7728d900ea0dce1d-f770ddffb869d5de1ef73cdc3e5d3231.jpg
│   │   ├── aec7d23710377b13cf7e9c6dd28ce405.jpg
│   │   ├── B0EF36183C6BB91D5BD89F893EAABFD6.jpg
│   │   ├── B0F99C737F0245B4FCD422914889C137.jpg
│   │   ├── B3AD79E3F18904E01C96AC11AB45EC69.jpg
│   │   ├── c2b247c3ec04c47fc44ef6fb0b298237.jpg
│   │   ├── CB4037297B96B260FCBFCFC4A842AF55.jpg
│   │   ├── cb9f02a4f25adb9e-fce8e600d7c75adb-2221b65b81d47cdc42f4aa728d0507e6_i.jpg
│   │   ├── ce81f2875ee0312d-025f19dc1efa7180-c0652eceaedd8a1457840c4201330c7a_i.jpg
│   │   ├── F62BE6F5E3505608F379CA3CD364C560.jpg
│   │   ├── F78BBD9991BAFB8D464D4A93ED898300.jpg
│   │   ├── FEC452AE658F1B7784F42EDC0C1F0F8F.jpg
│   │   ├── gouwuche.jpg
│   │   ├── Icon
│   │   │   ├── 4ARROW1.GIF
│   │   │   ├── 4ARROW2.GIF
│   │   │   ├── 4ARROW3.GIF
│   │   │   ├── 4ARROW4.GIF
│   │   │   ├── DISKETT2.GIF
│   │   │   ├── DOC01.GIF
│   │   │   ├── FILVIEW2.GIF
│   │   │   ├── find.bmp
│   │   │   ├── MANUAL.GIF
│   │   │   ├── NOTE03.GIF
│   │   │   ├── SWORDS.GIF
│   │   │   └── tuichu.GIF
│   │   ├── shan.png
│   │   ├── thCAND8OVM.jpg
│   │   ├── U4340P1103DT20111128094355.jpg
│   │   ├── vip1.jpg
│   │   ├── xia.png
│   │   ├── you.png
│   │   ├── zuo.png
│   │   ├── 保存.png
│   │   ├── 修改.gif
│   │   ├── 删除.gif
│   │   ├── 删除.png
│   │   ├── 我来了.gif
│   │   └── 新增.gif
│   ├── Shopping
│   │   ├── FormShop.cs
│   │   ├── FormShop.Designer.cs
│   │   ├── FormShopEdit.cs
│   │   ├── FormShopEdit.Designer.cs
│   │   ├── FormShopEdit.resx
│   │   ├── FormShopRed.cs
│   │   ├── FormShopRed.Designer.cs
│   │   ├── FormShopRed.resx
│   │   ├── FormShop.resx
│   │   └── Shop.cs
│   ├── Supplier
│   │   ├── FormSupplier.cs
│   │   ├── FormSupplier.Designer.cs
│   │   ├── FormSupplierEdit.cs
│   │   ├── FormSupplierEdit.Designer.cs
│   │   ├── FormSupplierEdit.resx
│   │   ├── FormSupplier.resx
│   │   └── Supplier.cs
│   ├── User
│   │   ├── FormUser.cs
│   │   ├── FormUser.Designer.cs
│   │   ├── FormUserEdit.cs
│   │   ├── FormUserEdit.Designer.cs
│   │   ├── FormUserEdit.resx
│   │   ├── FormUser.resx
│   │   └── User.cs
│   └── 超市管理系统.csproj
├── 超市管理系统.sln
└── 超市管理系统.suo

21 directories, 206 files

标签:

实例下载地址

c#超市管理系统.rar

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警