【例子介绍】KTV点歌系统(C#三层开发),内附加数据库
【相关图片】
【源码结构】
.
├── KTV
│ ├── KTV
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Form2.Designer.cs
│ │ ├── Form2.cs
│ │ ├── Form2.resx
│ │ ├── Form3.Designer.cs
│ │ ├── Form3.cs
│ │ ├── Form3.resx
│ │ ├── KTV.csproj
│ │ ├── KTV.csproj.user
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 1431560.jpg
│ │ │ ├── 5副本.jpg
│ │ │ ├── KTV.exe
│ │ │ ├── KTV.pdb
│ │ │ ├── KTV.vshost.exe
│ │ │ ├── KTV.vshost.exe.manifest
│ │ │ ├── KTVManager.dll
│ │ │ ├── KTVManager.pdb
│ │ │ ├── KTVModel.dll
│ │ │ ├── KTVModel.pdb
│ │ │ ├── KTVService.dll
│ │ │ ├── KTVService.pdb
│ │ │ └── tu.jpg
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── KTV.Form1.resources
│ │ │ ├── KTV.Form2.resources
│ │ │ ├── KTV.Form3.resources
│ │ │ ├── KTV.Properties.Resources.resources
│ │ │ ├── KTV.csproj.FileListAbsolute.txt
│ │ │ ├── KTV.csproj.GenerateResource.Cache
│ │ │ ├── KTV.exe
│ │ │ ├── KTV.pdb
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── KTV.csproj.FileListAbsolute.txt
│ ├── KTV.sln
│ ├── KTV.sql
│ ├── KTV.suo
│ ├── KTVManager
│ │ ├── KTVBLL.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── KTVManager.dll
│ │ │ ├── KTVManager.pdb
│ │ │ ├── KTVModel.dll
│ │ │ ├── KTVModel.pdb
│ │ │ ├── KTVService.dll
│ │ │ └── KTVService.pdb
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── KTVBLL.csproj.FileListAbsolute.txt
│ │ │ │ ├── KTVManager.dll
│ │ │ │ ├── KTVManager.pdb
│ │ │ │ ├── Refactor
│ │ │ │ │ └── KTVManager.dll
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ └── KTVBLL.csproj.FileListAbsolute.txt
│ │ └── singerNameManager.cs
│ ├── KTVModel
│ │ ├── KTVModel.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── KTVModel.dll
│ │ │ └── KTVModel.pdb
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── KTVModel.csproj.FileListAbsolute.txt
│ │ │ │ ├── KTVModel.dll
│ │ │ │ ├── KTVModel.pdb
│ │ │ │ ├── Refactor
│ │ │ │ │ └── KTVModel.dll
│ │ │ │ └── TempPE
│ │ │ └── KTVModel.csproj.FileListAbsolute.txt
│ │ └── singer.cs
│ ├── KTVService
│ │ ├── KTVDAL.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── KTVModel.dll
│ │ │ ├── KTVModel.pdb
│ │ │ ├── KTVService.dll
│ │ │ └── KTVService.pdb
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── KTVDAL.csproj.FileListAbsolute.txt
│ │ │ │ ├── KTVService.dll
│ │ │ │ ├── KTVService.pdb
│ │ │ │ ├── Refactor
│ │ │ │ │ └── KTVService.dll
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ └── KTVDAL.csproj.FileListAbsolute.txt
│ │ └── singerNameService.cs
│ ├── UpgradeLog.XML
│ └── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport.xslt
│ ├── UpgradeReport_Minus.gif
│ └── UpgradeReport_Plus.gif
└── KTV点歌系统(C#三层开发).rar
34 directories, 88 files
评论