【例子介绍】C# 赛马小游戏 代码改进版
这是第二个版本,使用后台线程,实现了gif动画的跳动。
【相关图片】
【源码结构】
文件清单
└── racehorseGame
├── racehorseGame
│ ├── bin
│ │ └── Debug
│ │ ├── Pic
│ │ │ ├── 1.gif
│ │ │ ├── 2.jpg
│ │ │ ├── 3.gif
│ │ │ ├── 4.gif
│ │ │ └── Thumbs.db
│ │ ├── racehorseGame.exe
│ │ ├── racehorseGame.pdb
│ │ ├── racehorseGame.vshost.exe
│ │ └── racehorseGame.vshost.exe.manifest
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── racehorseGame.csproj.FileListAbsolute.txt
│ │ │ ├── racehorseGame.csproj.GenerateResource.Cache
│ │ │ ├── racehorseGame.exe
│ │ │ ├── racehorseGame.Form1.resources
│ │ │ ├── racehorseGame.pdb
│ │ │ ├── racehorseGame.Properties.Resources.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── racehorseGame.csproj.FileList.txt
│ ├── Pic
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.gif
│ │ └── Thumbs.db
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── racehorseGame.csproj
├── racehorseGame.sln
├── racehorseGame.suo
├── UpgradeLog.XML
└── _UpgradeReport_Files
├── Thumbs.db
├── UpgradeReport.css
├── UpgradeReport_Minus.gif
├── UpgradeReport_Plus.gif
└── UpgradeReport.xslt
11 directories, 40 files
评论