实例介绍
网吧管理系系统,采用wpf,数据库sql
【实例截图】
【核心代码】
51e81377-fa7c-4604-9d6a-9134351e62d0
└── WPFInterBar
├── InterBarBLL
│ ├── AdminManager.cs
│ ├── bin
│ │ └── Debug
│ │ ├── InterBarBLL.dll
│ │ ├── InterBarBLL.pdb
│ │ ├── InterBarDAL.dll
│ │ ├── InterBarDAL.pdb
│ │ ├── InterBarFactory.dll
│ │ ├── InterBarFactory.pdb
│ │ ├── InterBarIDAL.dll
│ │ ├── InterBarIDAL.pdb
│ │ ├── InterBarModel.dll
│ │ └── InterBarModel.pdb
│ ├── Class1.cs
│ ├── ComputerBeUseManager.cs
│ ├── ComputerUseLogManager.cs
│ ├── InterBarBLL.csproj
│ ├── MemberManager.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── InterBarBLL.csproj.FileListAbsolute.txt
│ │ ├── InterBarBLL.dll
│ │ ├── InterBarBLL.pdb
│ │ ├── Refactor
│ │ │ └── InterBarBLL.dll
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SuperAdminManager.cs
├── InterBarDAL
│ ├── Access
│ │ └── MemberService.cs
│ ├── bin
│ │ └── Debug
│ │ ├── InterBarDAL.dll
│ │ ├── InterBarDAL.pdb
│ │ ├── InterBarIDAL.dll
│ │ ├── InterBarIDAL.pdb
│ │ ├── InterBarModel.dll
│ │ └── InterBarModel.pdb
│ ├── Class1.cs
│ ├── DBHelper.cs
│ ├── InterBarDAL.csproj
│ ├── InterBarDAL.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── InterBarDAL.csproj.FileListAbsolute.txt
│ │ ├── InterBarDAL.dll
│ │ ├── InterBarDAL.pdb
│ │ ├── Refactor
│ │ │ └── InterBarDAL.dll
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SqlServer
│ ├── AdminService.cs
│ ├── ComputerBeUseService.cs
│ ├── ComputerUseLogService.cs
│ ├── DBHelper.cs
│ ├── MemberService.cs
│ └── SuperAdminService.cs
├── InterBar_data_log.LDF
├── InterBar_data.mdf
├── InterBarFactory
│ ├── AbstractFactory.cs
│ ├── AccessFactory.cs
│ ├── bin
│ │ └── Debug
│ │ ├── InterBarDAL.dll
│ │ ├── InterBarDAL.pdb
│ │ ├── InterBarFactory.dll
│ │ ├── InterBarFactory.pdb
│ │ ├── InterBarIDAL.dll
│ │ ├── InterBarIDAL.pdb
│ │ ├── InterBarModel.dll
│ │ └── InterBarModel.pdb
│ ├── Class1.cs
│ ├── InterBarFactory.csproj
│ ├── InterBarFactory.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── InterBarFactory.csproj.FileListAbsolute.txt
│ │ ├── InterBarFactory.dll
│ │ ├── InterBarFactory.pdb
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SqlFactory.cs
├── InterBarIDAL
│ ├── bin
│ │ └── Debug
│ │ ├── InterBarIDAL.dll
│ │ ├── InterBarIDAL.pdb
│ │ ├── InterBarModel.dll
│ │ └── InterBarModel.pdb
│ ├── Class1.cs
│ ├── IAdminService.cs
│ ├── IComputerBeUseService.cs
│ ├── IComputerUseLogService.cs
│ ├── IMemberService.cs
│ ├── InterBarIDAL.csproj
│ ├── InterBarIDAL.csproj.user
│ ├── ISuperAdminService.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── InterBarIDAL.csproj.FileListAbsolute.txt
│ │ ├── InterBarIDAL.dll
│ │ ├── InterBarIDAL.pdb
│ │ ├── Refactor
│ │ │ └── InterBarIDAL.dll
│ │ └── ResolveAssemblyReference.cache
│ └── Properties
│ └── AssemblyInfo.cs
├── InterBar_log.ldf
├── InterBarModel
│ ├── Admin.cs
│ ├── bin
│ │ └── Debug
│ │ ├── InterBarModel.dll
│ │ └── InterBarModel.pdb
│ ├── Class1.cs
│ ├── ComputerBeUse.cs
│ ├── ComputerUseLog.cs
│ ├── InterBarModel.csproj
│ ├── InterBarModel.csproj.user
│ ├── Member.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── InterBarModel.csproj.FileListAbsolute.txt
│ │ ├── InterBarModel.dll
│ │ ├── InterBarModel.pdb
│ │ └── Refactor
│ │ └── InterBarModel.dll
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SuperAdmin.cs
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
├── WPFInterBar
│ ├── AddAdministratorxaml.xaml
│ ├── AddAdministratorxaml.xaml.cs
│ ├── AddMember .xaml
│ ├── AddMember .xaml.cs
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── bin
│ │ └── Debug
│ │ ├── de
│ │ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ │ └── System.Windows.Interactivity.resources.dll
│ │ ├── en
│ │ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ │ └── System.Windows.Interactivity.resources.dll
│ │ ├── es
│ │ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ │ └── System.Windows.Interactivity.resources.dll
│ │ ├── fr
│ │ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ │ └── System.Windows.Interactivity.resources.dll
│ │ ├── InterBarBLL.dll
│ │ ├── InterBarBLL.pdb
│ │ ├── InterBarDAL.dll
│ │ ├── InterBarDAL.pdb
│ │ ├── InterBarFactory.dll
│ │ ├── InterBarFactory.pdb
│ │ ├── InterBarIDAL.dll
│ │ ├── InterBarIDAL.pdb
│ │ ├── InterBarModel.dll
│ │ ├── InterBarModel.pdb
│ │ ├── it
│ │ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ │ └── System.Windows.Interactivity.resources.dll
│ │ ├── ja
│ │ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ │ └── System.Windows.Interactivity.resources.dll
│ │ ├── ko
│ │ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ │ └── System.Windows.Interactivity.resources.dll
│ │ ├── Lock
│ │ │ ├── Lock.bmp
│ │ │ ├── LockDll.dll
│ │ │ ├── Lock.exe
│ │ │ ├── Lock.ini
│ │ │ ├── logo.ico
│ │ │ └── Unlock.bmp
│ │ ├── Microsoft.Expression.Controls.dll
│ │ ├── Microsoft.Expression.Controls.xml
│ │ ├── Microsoft.Expression.Drawing.dll
│ │ ├── Microsoft.Expression.Drawing.xml
│ │ ├── Microsoft.Expression.Effects.dll
│ │ ├── Microsoft.Expression.Effects.xml
│ │ ├── Microsoft.Expression.Interactions.dll
│ │ ├── Microsoft.Expression.Interactions.xml
│ │ ├── Microsoft.Windows.Shell.dll
│ │ ├── Microsoft.Windows.Shell.pdb
│ │ ├── Microsoft.Windows.Shell.xml
│ │ ├── RibbonControlsLibrary.dll
│ │ ├── RibbonControlsLibrary.pdb
│ │ ├── RibbonControlsLibrary.xml
│ │ ├── System.Windows.Interactivity.dll
│ │ ├── System.Windows.Interactivity.xml
│ │ ├── WPFInterBar.exe
│ │ ├── WPFInterBar.pdb
│ │ ├── WPFInterBar.vshost.exe
│ │ ├── WPFInterBar.vshost.exe.manifest
│ │ ├── zh-Hans
│ │ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ │ └── System.Windows.Interactivity.resources.dll
│ │ └── zh-Hant
│ │ ├── Microsoft.Expression.Interactions.resources.dll
│ │ └── System.Windows.Interactivity.resources.dll
│ ├── Fonts
│ │ ├── AGENCYB.TTF
│ │ └── AGENCYR.TTF
│ ├── FormFunction.cs
│ ├── Lcon
│ │ ├── Activity Monitor.ico
│ │ ├── Administrator+.ico
│ │ ├── Administrator.ico
│ │ ├── computer.jpg
│ │ ├── IdleComputer.jpg
│ │ ├── Lock.ico
│ │ ├── peopleAll.ico
│ │ ├── People+.ico
│ │ ├── Terminal.ico
│ │ ├── twitter03.png
│ │ ├── twitter.png
│ │ ├── UseComputer.jpg
│ │ └── 小二空间.png
│ ├── LoginForm.xaml
│ ├── LoginForm.xaml.cs
│ ├── MainForm.xaml
│ ├── MainForm.xaml.cs
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── AddAdministratorxaml.baml
│ │ ├── AddAdministratorxaml.g.cs
│ │ ├── AddAdministratorxaml.g.i.cs
│ │ ├── AddInsiserForm.g.i.cs
│ │ ├── AddMember .baml
│ │ ├── AddMember .g.cs
│ │ ├── AddMember .g.i.cs
│ │ ├── App.baml
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── FeaturesForm.g.i.cs
│ │ ├── Fonts
│ │ │ ├── AGENCYB0.subset.ttf
│ │ │ └── AGENCYR1.subset.ttf
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── LoginForm.baml
│ │ ├── LoginForm.g.cs
│ │ ├── LoginForm.g.i.cs
│ │ ├── MainForm.baml
│ │ ├── MainForm.g.cs
│ │ ├── MainForm.g.i.cs
│ │ ├── MainWindow.g.i.cs
│ │ ├── PaymentForm.baml
│ │ ├── PaymentForm.g.cs
│ │ ├── PaymentForm.g.i.cs
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── RibbonForm.g.i.cs
│ │ ├── SuperAdminForm.g.i.cs
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── WPFInterBar_Content.g.i.cs
│ │ ├── WPFInterBar.csproj.FileListAbsolute.txt
│ │ ├── WPFInterBar.exe
│ │ ├── WPFInterBar.g.resources
│ │ ├── WPFInterBar_MarkupCompile.cache
│ │ ├── WPFInterBar_MarkupCompile.i.cache
│ │ ├── WPFInterBar.pdb
│ │ └── WPFInterBar.Properties.Resources.resources
│ ├── PaymentForm.xaml
│ ├── PaymentForm.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── WPFInterBar.csproj
├── WPFInterBar.sln
├── WPFInterBar.suo
└── 网吧管理系统数据库.sql
59 directories, 241 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论