資源簡介
簡單掃雷
代碼片段和文件信息
using?System;
using?System.Drawing;
using?System.Windows.Forms;
//Download?by?http://www.codefans.net
namespace?Mine
{
????public?partial?class?Form1?:?Form
????{
????????private?int?CostTime;?//所用時間
????????private?int?MineNum?=?10;?//雷的總數
????????private?int?MineWidth?=?30;?//雷方塊的大小(寬度為30像素)
????????private?Button[]?Mines;
????????private?int?RestMine?=?10;?//剩余的雷數
????????private?int[]?Turn;?//==-1?表示這個位置已經翻開;
????????private?int?XNum?=?8;?//一行方塊的數目
????????private?int?YNum?=?9;?//一列方塊的數目
????????public?Form1()
????????{
????????????InitializeComponent();
????????}
????????private?void?Form1_Load(object?sender?EventArgs?e)
????????{
????????????Turn?=?new?int[XNumYNum];
????????????Mines?=?new?Button[XNumYNum];
????????????for?(int?x?=?0;?x?
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????5274??2012-08-20?10:55??obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
????.......??????4198??2008-11-24?18:11??obj\Debug\Mine.bin.Debug.face.bmp
?????文件????????823??2012-08-20?10:53??obj\Debug\Mine.csproj.FileListAbsolute.txt
????.......???????885??2011-07-01?14:25??obj\Debug\Mine.csproj.GenerateResource.Cache
?????文件???????4608??2012-08-20?10:53??obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
????.......???????282??2009-06-29?08:41??obj\Mine.csproj.FileList.txt
?????文件???????1146??2012-08-20?10:54??Properties\AssemblyInfo.cs
?????文件???????3206??2012-08-20?10:53??Properties\Resources.Designer.cs
????.......??????6195??2008-11-24?18:13??Properties\Resources.resx
?????文件???????1087??2012-08-20?10:53??Properties\Settings.Designer.cs
?????文件????????249??2012-08-20?10:53??Properties\Settings.settings
?????文件???????9426??2012-08-30?17:40??Form1.cs
?????文件???????5238??2011-07-01?14:25??Form1.Designer.cs
?????文件???????6181??2011-07-01?14:25??Form1.resx
?????文件???????2238??2008-11-20?07:22??mine.ico
?????文件????????484??2012-08-30?17:40??Program.cs
?????文件?????????92??2016-11-16?09:28??瞅我,來來看我.txt
?????文件???????3823??2012-08-20?10:53??掃雷游戲.csproj
?????文件????????913??2012-08-20?10:53??掃雷游戲.sln
????..A..H.?????12288??2012-08-20?10:55??掃雷游戲.suo
????.......??????2166??2008-11-19?19:26??bin\Debug\aa.bmp
????.......??????1638??2008-11-19?19:31??bin\Debug\ask.bmp
????.......??????1558??2008-11-19?19:28??bin\Debug\bb.bmp
????.......??????4198??2008-11-24?18:11??bin\Debug\face.bmp
????.......??????1550??2008-11-19?19:29??bin\Debug\flag.bmp
????.......??????1710??2008-11-19?19:30??bin\Debug\mine.bmp
????.......??????2238??2008-11-19?19:25??bin\Debug\mine.ico
?????文件??????11608??2012-08-20?10:55??bin\Debug\Mine.vshost.exe
?????文件????????490??2010-03-17?22:39??bin\Debug\Mine.vshost.exe.manifest
????.......??????1414??2008-11-20?07:03??bin\Debug\mine1.bmp
............此處省略12個文件信息
評論
共有 條評論