2015年10月30日 星期五

推盤2.0

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 WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        Button[,] Buttons = new System.Windows.Forms.Button[5, 5];
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            for (int i = 1; i < 5; i++)
            {
                for (int j = 1; j < 5; j++)
                {
                    Buttons[i, j] = new Button();
                    Buttons[i, j].Size = new Size(50, 50);
                    Buttons[i, j].Location = new Point( i * 50,  j * 50);
                    this.Controls.Add(Buttons[ i , j]);//出現在畫面中
                }
            }
       
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Random rnd = new Random();
            int[] a = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
            for (int i = 0; i < 16; ++i)
            {
                int j = rnd.Next(15);
                int t = a[j];
                a[j] = a[i];
                a[i] = t;
            }
            int k = 0, c, v;
            for (int m = 1; m < 5; m++)
            {
                for (int n = 1; n < 5; n++)
                {

                    Buttons[m, n].Text = a[k].ToString();
                    k = k + 1;
                }
            }
            for (int b = 0; b < 16; ++b)
            {
                if (a[b] == 0)
                {
                    c = b % 4 + 1;
                    v = b / 4 + 1;
                    Buttons[v, c].Text = "";
                }
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            int x = 0;
            for (int s = 1; s < 5; s++)
            {
                for (int d = 1; d < 5; d++)
                {
                    Buttons[d, s].Text = x.ToString();
                    x = x + 1;
                }
            }
        }
    }
}

沒有留言:

張貼留言