using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication22
{
public partial class Form1 : Form
{
Button[,] buttons = new Button[17, 17];//格子,自己去試拉我不說
int[] array = new int[17];
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
for (int i = 0; i < 16; i++)
{
array[i] = i;//這不是陣列(?!!
}
/*
for (int j = 1; j < 10; j++)
{
buttons[1, j] = new Button();
buttons[1, j].Location = new Point(50 * j, 50);
buttons[1, j].Text = array[j].ToString();
this.Controls.Add(buttons[1, j]);
}
*/
for (int j = 0; j < 4; j++)
{
for (int i = 0; i < 4; i++)
{
buttons[i, j] = new Button();
buttons[i, j].Location = new Point(j * 50, i * 50);
buttons[i, j].Text = (j * 4 + i).ToString();
this.Controls.Add(buttons[i, j]);
buttons[i, j].Click += new EventHandler( Button1_Click);//大小寫的Bb都可以放哈,很好玩(?!
}
}
}
private void Button1_Click(object sender, EventArgs e)//此乃,俺爭家的,不速理免有低
{
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)
{
if (buttons[i, j].Text == "0")
{
MessageBox.Show("i=" + i + ",j=" + j + " " + buttons[i, j].Text);
}
}
}
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)
{
if (sender == buttons[i, j])
{
MessageBox.Show("i=" + i + ",j=" + j + " " + buttons[i, j].Text);
}
}
}
}
private void button1_Click(object sender, EventArgs e)//這個好像是..本身用程式碼打出來的格子
{
int d1, tmp, k;
Random irand = new Random();
d1 = irand.Next(1, 16);
label1.Text = d1.ToString();
for (int j = 1; j < 16; j++)
{
k = 16 - j + 1;
tmp = array[d1];
array[d1] = array[k];
array[k] = tmp;
}
for (int j = 0; j < 4; j++)
{
for (int i = 0; i < 4; i++)
{
buttons[i, j].Size = new System.Drawing.Size(100, 100);
//buttons[i, j] = new Button();
buttons[i, j].BackColor = Color.Yellow;
buttons[i, j].Location = new Point( j * 100, i * 100);
buttons[i, j].Text = array[i*4+j+1].ToString();
this.Controls.Add(buttons[i, j]);
}
}
//buttons[1, 1].Text = array[1].ToString();
/*
for (int j = 1; j < 10; j++)
{
// buttons[1, j] = new Button();
buttons[1, j].Location = new Point(50 * j, 50);
buttons[1, j].Text = array[j].ToString();
this.Controls.Add(buttons[1, j]);
}
*/
label2.Text = array[d1].ToString();
}
private void label2_Click(object sender, EventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
}
}
沒有留言:
張貼留言