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

资源简介

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.Threading.Tasks;
using System.Windows.Forms;

namespace Games
{
    public partial class _2048messageBox : MyForm
    {
        public _2048messageBox(string titlestring message)
        {
            InitializeComponent();
            this.max_moved_top = 100;
            label1.Text = title;
            textBox1.Text = message.ToString();
        }
        protected override void onkeydown(KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
                this.Close();
            base.onkeydown(e);
        }
    }
}

评论

共有 条评论