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

资源简介


资源截图

代码片段和文件信息

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

namespace _2048Demo
{
    public partial class Form1 : Form
    {
        [DllImport(“user32“ EntryPoint = “HideCaret“)]
        private static extern bool HideCaret(IntPtr hWnd);
        public Form1()
        {
            this.KeyPreview = true;
            init();   //初始化数组
            InitializeComponent();
        }
        private int[] map = new int[4 4];
        private int score = 0;





        /// 
        /// 响应按钮的上下左右按键消息
        /// 

        /// 
        /// 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-26 13:04  2048Demo\
     目录           0  2018-11-27 14:29  2048Demo\2048Demo\
     文件        6358  2020-05-03 18:37  2048Demo\2048Demo\2048Demo.csproj
     文件         497  2018-11-27 14:26  2048Demo\2048Demo\2048Demo.csproj.user
     文件        1700  2018-11-27 14:29  2048Demo\2048Demo\2048Demo_TemporaryKey.pfx
     文件       33914  2020-05-03 19:36  2048Demo\2048Demo\Form1.Designer.cs
     文件       23577  2020-05-03 20:13  2048Demo\2048Demo\Form1.cs
     文件        7267  2020-05-03 19:36  2048Demo\2048Demo\Form1.resx
     文件         490  2018-11-26 13:04  2048Demo\2048Demo\Program.cs
     目录           0  2018-11-26 13:04  2048Demo\2048Demo\Properties\
     文件        1348  2018-11-26 13:04  2048Demo\2048Demo\Properties\AssemblyInfo.cs
     文件        2870  2018-11-26 13:04  2048Demo\2048Demo\Properties\Resources.Designer.cs
     文件        5612  2018-11-26 13:04  2048Demo\2048Demo\Properties\Resources.resx
     文件        1096  2018-11-26 13:04  2048Demo\2048Demo\Properties\Settings.Designer.cs
     文件         249  2018-11-26 13:04  2048Demo\2048Demo\Properties\Settings.settings
     文件        3206  2018-11-27 09:05  2048Demo\2048Demo\Resource1.Designer.cs
     文件        6196  2018-11-27 09:05  2048Demo\2048Demo\Resource1.resx
     目录           0  2018-11-27 09:05  2048Demo\2048Demo\Resources\
     文件        3382  2018-11-27 09:05  2048Demo\2048Demo\Resources\Image1.bmp
     目录           0  2018-11-26 13:04  2048Demo\2048Demo\bin\
     目录           0  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\
     文件        1889  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\2048Demo.application
     文件       27648  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\2048Demo.exe
     文件        3006  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\2048Demo.exe.manifest
     文件       46592  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\2048Demo.pdb
     文件       11600  2018-11-27 13:40  2048Demo\2048Demo\bin\Debug\2048Demo.vshost.exe
     文件         490  2018-04-12 07:35  2048Demo\2048Demo\bin\Debug\2048Demo.vshost.exe.manifest
     目录           0  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\app.publish\
     文件        5657  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\app.publish\2048Demo.application
     目录           0  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\app.publish\Application Files\
     目录           0  2018-11-27 14:30  2048Demo\2048Demo\bin\Debug\app.publish\Application Files\2048Demo_1_0_0_0\
............此处省略44个文件信息

评论

共有 条评论