【例子介绍】有背景音乐的俄罗斯方块(C#源代码)
有背景音乐的俄罗斯方块(C#源代码) 有背景音乐的俄罗斯方块(C#源代码)
【相关图片】
【源码结构】
文件清单
└── 俄罗斯方块,添加音乐(C#源代码)
├── apologize.mp3
├── BlockSet.xml
├── Tetris
│ ├── bin
│ │ └── Debug
│ │ ├── AxInterop.WMPLib.dll
│ │ ├── Interop.WMPLib.dll
│ │ ├── IrisSkin2.dll
│ │ ├── Tetris.exe
│ │ └── Tetris.vshost.exe
│ ├── Block.cs
│ ├── BlockGroup.cs
│ ├── BlockInfo.cs
│ ├── BlockSet.xml
│ ├── Config.cs
│ ├── FrmConfig.cs
│ ├── FrmConfig.Designer.cs
│ ├── FrmConfig.resx
│ ├── FrmTetris.cs
│ ├── FrmTetris.Designer.cs
│ ├── FrmTetris.resx
│ ├── InfoArr.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── AxInterop.WMPLib.dll
│ │ │ ├── Interop.WMPLib.dll
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ ├── Tetris.BlockSet.xml
│ │ │ ├── Tetris.csproj.GenerateResource.Cache
│ │ │ ├── Tetris.csproj.ResolveComReference.cache
│ │ │ ├── Tetris.exe
│ │ │ ├── Tetris.FrmMode.resources
│ │ │ ├── Tetris.FrmTetris.resources
│ │ │ ├── Tetris.pdb
│ │ │ └── Tetris.Properties.Resources.resources
│ │ ├── Tetris.csproj.FileListAbsolute.txt
│ │ └── Tetris.csproj.FileList.txt
│ ├── Palette.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── Tetris.csproj
├── Tetris.sln
└── Tetris.suo
9 directories, 42 files
评论