【例子介绍】C# KTV点歌管理系统
代码完整 注释详细 内附系统使用说明文挡..........................
【相关图片】
【源码结构】
文件清单
└── KTV
├── KTV
│ ├── KTV
│ │ ├── app.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── AxInterop.WMPLib.dll
│ │ │ ├── Interop.WMPLib.dll
│ │ │ ├── KTV.exe
│ │ │ ├── KTV.exe.config
│ │ │ ├── KTV.pdb
│ │ │ ├── KTV.vshost.exe
│ │ │ └── KTV.vshost.exe.config
│ │ ├── Database
│ │ │ └── db_KTV.mdb
│ │ ├── frmAuton.cs
│ │ ├── frmAuton.Designer.cs
│ │ ├── frmAuton.resx
│ │ ├── frmDaiGe.cs
│ │ ├── frmDaiGe.Designer.cs
│ │ ├── frmDaiGe.resx
│ │ ├── frmdictionary.cs
│ │ ├── frmdictionary.Designer.cs
│ │ ├── frmdictionary.resx
│ │ ├── frmLogin.cs
│ │ ├── frmLogin.Designer.cs
│ │ ├── frmLogin.resx
│ │ ├── frmMain.cs
│ │ ├── frmMain.Designer.cs
│ │ ├── frmMain.resx
│ │ ├── frmMusicinfo.cs
│ │ ├── frmMusicinfo.Designer.cs
│ │ ├── frmMusicinfo.resx
│ │ ├── frmNumber.cs
│ │ ├── frmNumber.Designer.cs
│ │ ├── frmNumber.resx
│ │ ├── frmPlay.cs
│ │ ├── frmPlay.Designer.cs
│ │ ├── frmPlay.resx
│ │ ├── KTVclass
│ │ │ ├── frmdictionaryMenthod.cs
│ │ │ ├── getConnection.cs
│ │ │ ├── tb_authorinfo.cs
│ │ │ ├── tb_authorinfoMenthod.cs
│ │ │ ├── tb_computer.cs
│ │ │ ├── tb_dictionary.cs
│ │ │ ├── tb_musicinfo.cs
│ │ │ └── tbMusicnfoMenthod.cs
│ │ ├── KTV.csproj
│ │ ├── KTV.csproj.user
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── AxInterop.WMPLib.dll
│ │ │ │ ├── Interop.WMPLib.dll
│ │ │ │ ├── KTV.csproj.GenerateResource.Cache
│ │ │ │ ├── KTV.csproj.ResolveComReference.cache
│ │ │ │ ├── KTV.exe
│ │ │ │ ├── KTV.frmAuton.resources
│ │ │ │ ├── KTV.frmDaiGe.resources
│ │ │ │ ├── KTV.frmdictionary.resources
│ │ │ │ ├── KTV.frmLogin.resources
│ │ │ │ ├── KTV.frmMain.resources
│ │ │ │ ├── KTV.frmMusicinfo.resources
│ │ │ │ ├── KTV.frmNumber.resources
│ │ │ │ ├── KTV.frmPlay.resources
│ │ │ │ ├── KTV.pdb
│ │ │ │ ├── KTV.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ │ ├── Database.db_KTVDataSet.Designer.cs.dll
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── KTV.csproj.FileList.txt
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── Resources
│ │ ├── 0.png
│ │ ├── 取消按钮.bmp
│ │ ├── 拼音点歌.png
│ │ ├── 播放.png
│ │ ├── 数字点歌.png
│ │ ├── 明星点歌.png
│ │ ├── 歌名点歌.png
│ │ ├── 确定按钮.bmp
│ │ ├── 背景.bmp
│ │ ├── 背景图.bmp
│ │ ├── 退出.png
│ │ └── 选择.png
│ ├── KTV.sln
│ └── KTV.suo
└── readme.doc
13 directories, 82 files
评论