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

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Drawing;
using System.Threading;
using System.Windows.Forms;

//ArrayList命名空间

namespace 连连看
{
    public partial class Form1 : Form
    {
        #region linkType enum

        public enum linkType
        {
            LineType
            OneCornerType
            TwoCornerType
        };

        #endregion

        private readonly int[] m_map = new int[4*4];
        private int BLANK_STATE = -1;

        private int GameSize = 4; //布局大小即行列数
        private linkType LType; //连通方式
        private bool Select_first; //是否已经选中第一块
        private Bitmap Source; //所有动物图案的图片
        private int W = 50; //动物方块图案的宽度
        private int m_nCol = 4;
        private int m_nRow = 4;
        private int x1; //被选

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

    ..A..H.     45568  2018-04-22 16:29  连连看\.vs\连连看\v15\.suo

     文件     618496  2018-04-22 16:29  连连看\.vs\连连看\v15\sqlite3\storage.ide

     文件     894464  2018-04-22 16:29  连连看\bin\Debug\连连看.exe

     文件       1094  2018-04-18 20:44  连连看\bin\Debug\连连看.lnk

     文件      99840  2018-04-22 16:29  连连看\bin\Debug\连连看.pdb

     文件      11608  2012-08-20 07:30  连连看\bin\Debug\连连看.vshost.exe

     文件        490  2010-03-17 22:39  连连看\bin\Debug\连连看.vshost.exe.manifest

     文件      25552  2018-04-22 15:33  连连看\Form1.cs

     文件       3441  2018-04-22 15:25  连连看\Form1.Designer.cs

     文件     411712  2018-04-22 15:25  连连看\Form1.resx

     文件      25551  2018-04-22 16:03  连连看\Form2.cs

     文件       3473  2018-04-22 15:27  连连看\Form2.Designer.cs

     文件     411712  2018-04-22 15:27  连连看\Form2.resx

     文件      25551  2018-04-22 16:04  连连看\Form3.cs

     文件       3249  2018-04-22 15:27  连连看\Form3.Designer.cs

     文件       5814  2018-04-22 15:27  连连看\Form3.resx

     文件      25539  2018-04-22 16:29  连连看\Form4.cs

     文件       3249  2018-04-22 15:27  连连看\Form4.Designer.cs

     文件       5814  2018-04-22 15:27  连连看\Form4.resx

     文件        460  2018-04-22 15:44  连连看\Form5.cs

     文件       3027  2018-04-22 15:44  连连看\Form5.Designer.cs

     文件       5817  2018-04-22 15:44  连连看\Form5.resx

     文件       1230  2018-04-22 15:18  连连看\obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6062  2018-04-22 16:07  连连看\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       3584  2018-04-22 15:42  连连看\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件         42  2018-04-22 15:36  连连看\obj\Debug\连连看.csproj.CoreCompileInputs.cache

     文件       1461  2018-04-22 16:01  连连看\obj\Debug\连连看.csproj.FileListAbsolute.txt

     文件       1110  2018-04-22 16:07  连连看\obj\Debug\连连看.csproj.GenerateResource.Cache

     文件       1340  2018-04-22 15:17  连连看\obj\Debug\连连看.csprojResolveAssemblyReference.cache

     文件     894464  2018-04-22 16:29  连连看\obj\Debug\连连看.exe

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

评论

共有 条评论