• 大小: 0.10M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 游戏  

资源简介

连连看 .net版本

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace 连连看
{
    public partial class Form1 : Form
    {
        private Bitmap Source;               //所有动物图案的图片
        private int W;                       //动物方块图案的宽度
        private int GameSize=10;             //布局大小即行列数
        private bool Select_first = false;   //是否已经选中第一块
        private int x1 y1;                  //被选中第一块的地图坐标
        private int x2 y2;                  //被选中第二块的地图坐标
        private int m_nCol = 10;
        private int m_nRow = 10;
        private int[] m_map = new int[10*10];
        private int BLANK_STATE = -1;
        public Form1()
        {
            Initialize

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      14879  2009-05-24 08:25  Form1.cs

     文件       1792  2009-05-24 08:19  Form1.Designer.cs

     文件       5814  2009-05-24 08:19  Form1.resx

     文件       4485  2009-05-22 08:02  from.gif

     文件        468  2009-04-30 10:37  Program.cs

     文件       3225  2009-04-30 10:47  连连看.csproj

     文件        906  2009-04-30 10:37  连连看.sln

     文件        179  2009-05-21 23:44  最新.Net源码下载.url

     文件      24576  2009-06-16 11:46  bin\Debug\连连看.exe

     文件      40448  2009-06-16 11:46  bin\Debug\连连看.pdb

     文件       5632  2005-11-11 22:25  bin\Debug\连连看.vshost.exe

     文件        842  2009-05-24 08:19  obj\Debug\连连看.csproj.GenerateResource.Cache

     文件      24576  2009-06-16 11:46  obj\Debug\连连看.exe

     文件        180  2009-05-24 08:19  obj\Debug\连连看.Form1.resources

     文件      40448  2009-06-16 11:46  obj\Debug\连连看.pdb

     文件        180  2009-04-30 10:47  obj\Debug\连连看.Properties.Resources.resources

     文件        282  2009-05-24 08:25  obj\连连看.csproj.FileList.txt

     文件        506  2009-06-16 11:46  obj\连连看.csproj.FileListAbsolute.txt

     文件       1190  2009-04-30 10:37  Properties\AssemblyInfo.cs

     文件       2873  2009-04-30 10:37  Properties\Resources.Designer.cs

     文件       5612  2009-04-30 10:37  Properties\Resources.resx

     文件       1093  2009-04-30 10:37  Properties\Settings.Designer.cs

     文件        249  2009-04-30 10:37  Properties\Settings.settings

     文件      54934  2006-01-05 14:55  res\3Dframes.bmp

     文件     386622  2006-01-05 14:55  res\animal.bmp

     文件       3278  2006-01-05 14:55  res\blueframe.bmp

     文件       3278  2006-01-05 14:55  res\grayframe.bmp

     文件       1078  2006-01-05 14:55  res\skyblue_LLK.ico

     文件        403  2006-01-05 14:55  res\skyblue_LLK.rc2

     文件       1768  2009-06-16 11:51  51aspx源码必读.txt

............此处省略10个文件信息

评论

共有 条评论