实例介绍
这是winform连接本地数据库SQL sever,完成的一个模拟话费充和消费功能的系统,实现增删改查的练习。适合winform初学者用来学习。 主要功能有:用户开户,用户信息查询与修改,话费查询与充值,账单记录查询,模拟通话消费。 订单页面在Grid控件中点击右键可进行导出Execl文件操作,系统带有操作提示语,进度条控件的使用,以及winform皮肤插件的使用。
【实例截图】
【核心代码】
话费充值消费系统.rar
└── 卓越项目-话费充值消费系统
├── bitbug_favicon.ico
├── 数据库
│ ├── ChargingDB_log.ldf
│ └── ChargingDB.mdf
├── 话费充值消费系统
│ ├── 话费充值消费系统
│ │ ├── App.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── music
│ │ │ │ │ ├── bgmusic.wav
│ │ │ │ │ ├── CZok.wav
│ │ │ │ │ └── KHok.wav
│ │ │ │ ├── pic
│ │ │ │ │ └── 123.jpg
│ │ │ │ ├── res
│ │ │ │ │ ├── a.png
│ │ │ │ │ └── b.png
│ │ │ │ ├── 话费充值消费系统.exe
│ │ │ │ ├── 话费充值消费系统.exe.config
│ │ │ │ ├── 话费充值消费系统.pdb
│ │ │ │ ├── 话费充值消费系统.vshost.exe
│ │ │ │ ├── 话费充值消费系统.vshost.exe.config
│ │ │ │ └── 话费充值消费系统.vshost.exe.manifest
│ │ │ └── Release
│ │ ├── bitbug_favicon.ico
│ │ ├── ChaForm.cs
│ │ ├── ChaForm.Designer.cs
│ │ ├── ChaForm.resx
│ │ ├── Class1.cs
│ │ ├── DBhelper.cs
│ │ ├── ExecleHelper.cs
│ │ ├── FormAddManager.cs
│ │ ├── FormAddManager.Designer.cs
│ │ ├── FormAddManager.resx
│ │ ├── FormAddTC.cs
│ │ ├── FormAddTC.Designer.cs
│ │ ├── FormAddTC.resx
│ │ ├── FormAdmin.cs
│ │ ├── FormAdmin.Designer.cs
│ │ ├── FormAdmin.resx
│ │ ├── FormCall.cs
│ │ ├── FormCall.Designer.cs
│ │ ├── FormCall.resx
│ │ ├── FormCXTC.cs
│ │ ├── FormCXTC.Designer.cs
│ │ ├── FormCXTC.resx
│ │ ├── Form_CZHF.cs
│ │ ├── Form_CZHF.Designer.cs
│ │ ├── Form_CZHF.resx
│ │ ├── FormCZOK.cs
│ │ ├── FormCZOK.Designer.cs
│ │ ├── FormCZOK.resx
│ │ ├── FormLogin.cs
│ │ ├── FormLogin.Designer.cs
│ │ ├── FormLogin.resx
│ │ ├── FormMain.cs
│ │ ├── FormMain.Designer.cs
│ │ ├── FormMain.resx
│ │ ├── FormManager.cs
│ │ ├── FormManager.Designer.cs
│ │ ├── FormManager.resx
│ │ ├── FormSelect.cs
│ │ ├── FormSelect.Designer.cs
│ │ ├── FormSelect.resx
│ │ ├── Form_Show.cs
│ │ ├── FormSJGH.cs
│ │ ├── FormSJGH.Designer.cs
│ │ ├── FormSJGH.resx
│ │ ├── FormUserXG.cs
│ │ ├── FormUserXG.Designer.cs
│ │ ├── FormUserXG.resx
│ │ ├── FormYHKH.cs
│ │ ├── FormYHKH.Designer.cs
│ │ ├── FormYHKH.resx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── 话费充值消费系统.ChaForm.resources
│ │ │ ├── 话费充值消费系统.csproj.FileListAbsolute.txt
│ │ │ ├── 话费充值消费系统.csproj.GenerateResource.Cache
│ │ │ ├── 话费充值消费系统.csprojResolveAssemblyReference.cache
│ │ │ ├── 话费充值消费系统.exe
│ │ │ ├── 话费充值消费系统.FormAddManager.resources
│ │ │ ├── 话费充值消费系统.FormAddTC.resources
│ │ │ ├── 话费充值消费系统.FormAdmin.resources
│ │ │ ├── 话费充值消费系统.FormCall.resources
│ │ │ ├── 话费充值消费系统.FormCXTC.resources
│ │ │ ├── 话费充值消费系统.Form_CZHF.resources
│ │ │ ├── 话费充值消费系统.FormCZOK.resources
│ │ │ ├── 话费充值消费系统.FormLogin.resources
│ │ │ ├── 话费充值消费系统.FormMain.resources
│ │ │ ├── 话费充值消费系统.FormManager.resources
│ │ │ ├── 话费充值消费系统.FormSelect.resources
│ │ │ ├── 话费充值消费系统.FormSJGH.resources
│ │ │ ├── 话费充值消费系统.FormUserXG.resources
│ │ │ ├── 话费充值消费系统.FormYHKH.resources
│ │ │ ├── 话费充值消费系统.pdb
│ │ │ ├── 话费充值消费系统.Properties.Resources.resources
│ │ │ ├── 话费充值消费系统.textBox.resources
│ │ │ └── 话费充值消费系统.UpDataFrom.resources
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── 16.jpg
│ │ │ ├── 1e30e924b899a9015adb921b16950a7b0208f535.jpg
│ │ │ ├── 693_P_1484075525682.jpg
│ │ │ ├── 834e96c89534ae6ef7c9bca892ce3bca.gif
│ │ │ ├── a7ea0ef5fc839c571.jpg
│ │ │ ├── a7ea0ef5fc839c57.jpg
│ │ │ ├── a.png
│ │ │ ├── back.png
│ │ │ ├── bg.jpg
│ │ │ ├── bitbug_favicon.png
│ │ │ ├── b.png
│ │ │ ├── butbg.png
│ │ │ ├── cd1e71d28c281d724047c6e39db73aab.png
│ │ │ ├── czcg.png
│ │ │ ├── default_avatar_singer1.png
│ │ │ ├── default_avatar_singer.png
│ │ │ ├── fff.jpg
│ │ │ ├── hand.png
│ │ │ ├── hu.png
│ │ │ ├── icon_pwd_display.png
│ │ │ ├── icon_pwd_hide.png
│ │ │ ├── iii.png
│ │ │ ├── ii.png
│ │ │ ├── IMG_20180607_1056471.jpg
│ │ │ ├── IMG_20180607_105647.jpg
│ │ │ ├── IMG_20180607_105857.jpg
│ │ │ ├── IMG_20180607_105912.jpg
│ │ │ ├── IMG_20180607_105926.jpg
│ │ │ ├── IMG_20180607_115228.jpg
│ │ │ ├── more_icon_settings.png
│ │ │ ├── nav1.jpg
│ │ │ ├── player_btn_close_normal.png
│ │ │ ├── sy1_0011.jpg
│ │ │ ├── sy1_0011.png
│ │ │ ├── sy1_001.jpg
│ │ │ ├── sy1_02.jpg
│ │ │ ├── sy1_03-1.jpg
│ │ │ ├── sy1_03.jpg
│ │ │ ├── sy1_04-1.jpg
│ │ │ ├── sy1_04.jpg
│ │ │ ├── sy1_05-1.jpg
│ │ │ ├── sy1_05.jpg
│ │ │ ├── timeline_detail_back.png
│ │ │ ├── timg-171.jpg
│ │ │ ├── timg-17.jpg
│ │ │ ├── timg-201.jpg
│ │ │ ├── timg-20.jpg
│ │ │ ├── timg-22.jpg
│ │ │ ├── UpgradeReport_Information.png
│ │ │ ├── User.jpg
│ │ │ ├── 未命名.png
│ │ │ └── 未标题-1.png
│ │ ├── textBox.cs
│ │ ├── textBox.Designer.cs
│ │ ├── textBox.resx
│ │ ├── UpDataFrom.cs
│ │ ├── UpDataFrom.Designer.cs
│ │ ├── UpDataFrom.resx
│ │ └── 话费充值消费系统.csproj
│ ├── 话费充值消费系统.sln
│ └── 话费充值消费系统.v11.suo
└── 话费充值消费系统.pptx
15 directories, 163 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论