资源简介
简单扫雷
代码片段和文件信息
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 < XNum; 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个文件信息
评论
共有 条评论