using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication01
{
public partial class Form1 : Form
{
System.Windows.Forms.Button[] Buttons;
int[,] a = new int[4, 4];
int bno,nobtpressed=0;
int[] recordbutn = new int[9] { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
int temp;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Buttons = new System.Windows.Forms.Button[9];
for (int i = 0; i < 9; ++i)
{
Buttons[i] = new Button();
Buttons[i].Size = new Size(110, 110);
Buttons[i].Click += new System.EventHandler(Buttons_Click);
this.Controls.Add(Buttons[i]);
if (i <= 2)
Buttons[i].Location = new System.Drawing.Point(10 + i * 150, 10 );
else if (i > 2 && i <= 5)
Buttons[i].Location = new System.Drawing.Point(10 + (i - 3) * 150, 40 + 100);
else if (i > 5 && i <= 9)
Buttons[i].Location = new System.Drawing.Point(10 + (i - 6) * 150, 70 + 200);
Buttons[i].Text = "" + i + "";
}
}
public void Buttons_Click(object sender, EventArgs e)
{
// System.Windows.Forms.MessageBox.Show("You have clicked button " +
// ((System.Windows.Forms.Button)sender).Tag.ToString());
String tnum = sender.ToString();
int tlen = tnum.Length;
String no = tnum.Substring(tlen - 1);
for (int i = 0; i < 9; i++)
{
if (Buttons[i].Text == no)
bno = i;
}
switch (bno)
{
case 0:
//MessageBox.Show("0");
Buttons[0].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[0];
recordbutn[0] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
case 1:
//MessageBox.Show("1");
Buttons[1].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[1];
recordbutn[1] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
case 2:
//MessageBox.Show("2");
Buttons[2].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[2];
recordbutn[2] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
case 3:
//MessageBox.Show("3");
Buttons[3].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[3];
recordbutn[3] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
case 4:
//MessageBox.Show("4");
Buttons[4].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[4];
recordbutn[4] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
case 5:
//MessageBox.Show("5");
Buttons[5].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[5];
recordbutn[5] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
case 6:
//MessageBox.Show("6");
Buttons[6].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[6];
recordbutn[6] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
case 7:
//MessageBox.Show("7");
Buttons[7].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[7];
recordbutn[7] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
case 8:
//MessageBox.Show("8");
Buttons[8].Image = pictureBox1.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + label2;
temp = recordbutn[8];
recordbutn[8] = recordbutn[9 - nobtpressed];
recordbutn[9 - nobtpressed] = temp;
button1_Click(sender, e);
break;
}
}
private void button1_Click(object sender, EventArgs e)
{
Random rd=new Random();
int rdno = rd.Next(9 - nobtpressed);
label1.Text=""+recordbutn[rdno];
Buttons[recordbutn[rdno]].Image=pictureBox2.Image;
nobtpressed = nobtpressed + 1;
label2.Text = "" + nobtpressed;
}
}
}
沒有留言:
張貼留言