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

资源简介

2048游戏源码

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
/************************************************************************/
/* 该类是我从我写的控制台2048版本移植过来的。
 * 注:本人现在大四,2015年毕业。求offer喵。详见Resume.cs
/************************************************************************/
namespace My2048
{
    public partial class Form1 : Form
    {
        private bool judge;
        public Form1()
        {
            InitializeComponent();
            ini_Game();
        }
        private void Form1_KeyPress(object sender KeyPressEventArgs e)
        {
            String moeKey = e.KeyChar.ToString();
            int ch

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2482  2014-08-21 10:03  51Aspx源码必读.txt
     文件         187  2014-06-11 14:40  App.config
     目录           0  2014-08-20 15:36  bin\
     目录           0  2014-08-21 10:03  bin\Debug\
     文件        1814  2014-08-21 09:43  bin\Debug\My2048.vshost.application
     文件       22984  2014-08-21 09:59  bin\Debug\My2048.vshost.exe
     文件         187  2014-06-11 14:40  bin\Debug\My2048.vshost.exe.config
     文件        3447  2014-08-21 09:43  bin\Debug\My2048.vshost.exe.manifest
     目录           0  2014-06-11 19:02  bin\Release\
     文件        3920  2014-08-20 15:31  Form1.cs
     文件       18028  2014-06-12 09:45  Form1.Designer.cs
     文件        5817  2014-06-11 20:26  Form1.resx
     文件        4945  2007-07-18 09:38  from.gif
     文件        5598  2014-08-20 15:30  GameCore.cs
     文件        7248  2014-06-11 23:34  My2048.csproj
     文件         452  2014-06-11 22:38  My2048.csproj.user
     文件         901  2014-08-21 10:00  My2048.sln
     文件        1732  2014-06-11 22:38  My2048_TemporaryKey.pfx
     目录           0  2014-08-20 15:36  obj\
     目录           0  2014-08-21 10:03  obj\Debug\
     文件        1308  2014-06-11 16:35  obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        8019  2014-08-21 09:40  obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件        1010  2014-08-21 10:03  obj\Debug\My2048.csproj.FileListAbsolute.txt
     文件           0  2014-06-11 14:40  obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
     文件           0  2014-06-11 14:40  obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
     文件           0  2014-06-11 14:40  obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
     目录           0  2014-08-20 15:36  obj\Debug\TempPE\
     文件        6144  2014-06-11 20:26  obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
     文件         518  2014-06-11 14:40  Program.cs
     目录           0  2014-08-20 15:36  Properties\
     文件        1332  2014-06-11 14:40  Properties\AssemblyInfo.cs
............此处省略26个文件信息

评论

共有 条评论