【例子介绍】公司年会照片抽奖程序 C#源码
1、可以读取固定文件夹里的图片,然后快速随机显示,这样可以为以后添加照片和成员方便 2、刚刚打开有一个开始按钮,点击后,开始,按钮消失 3、回车键、鼠标单击任意位置,可以暂停图片随机显示和开始图片随机显示 ...
【相关图片】
【源码结构】
.
├── 新建文件夹
│ ├── selectpicture
│ │ ├── Bibo.Designer.cs
│ │ ├── Bibo.cs
│ │ ├── Bibo.resx
│ │ ├── Blackboard.snk
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── bd.jpg
│ │ │ │ ├── image
│ │ │ │ │ ├── 100.jpg
│ │ │ │ │ ├── 101.jpg
│ │ │ │ │ ├── 102.jpg
│ │ │ │ │ ├── 15.jpg
│ │ │ │ │ ├── 16.jpg
│ │ │ │ │ ├── 4.jpg
│ │ │ │ │ ├── 5.jpg
│ │ │ │ │ ├── 6.jpg
│ │ │ │ │ └── 7.jpg
│ │ │ │ ├── selectpicture.exe
│ │ │ │ ├── selectpicture.pdb
│ │ │ │ ├── selectpicture.vshost.exe
│ │ │ │ └── selectpicture.vshost.exe.manifest
│ │ │ └── Release
│ │ │ ├── Bibo.vshost.exe.config
│ │ │ ├── Bibo.vshost.exe.manifest
│ │ │ ├── Bibo2014.exe
│ │ │ ├── Bibo2014.exe.config
│ │ │ ├── Bibo2014.pdb
│ │ │ ├── Bibo2014.vshost.exe
│ │ │ ├── Bibo2014.vshost.exe.config
│ │ │ ├── Bibo2014.vshost.exe.manifest
│ │ │ ├── Thumbs.db
│ │ │ ├── allwin.mp3
│ │ │ ├── b.jpg
│ │ │ ├── bu.png
│ │ │ ├── bv.mp3
│ │ │ ├── image
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── 成龙.jpg
│ │ │ │ ├── 普京.jpg
│ │ │ │ ├── 毕福剑.jpg
│ │ │ │ ├── 温家保.jpg
│ │ │ │ └── 胡锦涛.jpg
│ │ │ ├── image_bak
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── 张立.jpg
│ │ │ │ ├── 李猛.jpg
│ │ │ │ ├── 刘光英.jpg
│ │ │ │ ├── 张地建.jpg
│ │ │ │ ├── 索金宝.jpg
│ │ │ │ └── 薛海粟.jpg
│ │ │ ├── selectpicture.vshost.exe.config
│ │ │ ├── selectpicture.vshost.exe.manifest
│ │ │ ├── win.mp3
│ │ │ └── winner
│ │ │ ├── 9.jpg
│ │ │ ├── Thumbs.db
│ │ │ ├── 刘翔.jpg
│ │ │ └── 奥巴马.jpg
│ │ ├── obj
│ │ │ └── x86
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── selectpicture.Form1.resources
│ │ │ │ ├── selectpicture.Properties.Resources.resources
│ │ │ │ ├── selectpicture.csproj.FileListAbsolute.txt
│ │ │ │ ├── selectpicture.csproj.GenerateResource.Cache
│ │ │ │ ├── selectpicture.exe
│ │ │ │ └── selectpicture.pdb
│ │ │ └── Release
│ │ │ ├── Bibo2014.exe
│ │ │ ├── Bibo2014.pdb
│ │ │ ├── Bibo2014_MarkupCompile.i.cache
│ │ │ ├── CSC158A.tmp
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── UserControl1.g.i.cs
│ │ │ ├── selectpicture.Bibo.resources
│ │ │ ├── selectpicture.Properties.Resources.resources
│ │ │ ├── selectpicture.csproj.FileListAbsolute.txt
│ │ │ ├── selectpicture.csproj.GenerateResource.Cache
│ │ │ ├── selectpicture.csprojResolveAssemblyReference.cache
│ │ │ └── selectpicture.winners.resources
│ │ ├── selectpicture.csproj
│ │ ├── winners.Designer.cs
│ │ ├── winners.cs
│ │ └── winners.resx
│ ├── selectpicture.sln
│ ├── selectpicture.suo
│ └── selectpicture.v12.suo
└── 公司年会照片抽奖程序 C#源码_.7z
16 directories, 91 files
评论