C# C#应用 十五字小游戏

1.用C#编辑出来一个小游戏,和小时玩的拼图游戏有些类似,还是蛮有趣得到,来和大家分享一下。
2.该十五字游戏下面有三个按钮,作用分别为:乱序:打乱上面十五个数字的顺序;提交:当你把游戏恢复到原位后,点提交按钮,会判断你的顺序对不对,若是正确的,出现“你真棒”字样,若不正确,不会出现;排序:自动把十五个数字顺序排好。
3.程序代码如下:

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 十五字游戏
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }


        const int N = 4;
        Button [,] buttons = new Button[N,N];


        private void Form1_Load(object sender, EventArgs e)
        {
            //产生所有按钮
            GenerateAllButtons();
        }
        void  GenerateAllButtons()
        {
            int x0 = 100, y0 = 50, w = 45, d = 50;
            for (int i=0;i

你可能感兴趣的:(C#应用)