2010年11月26日 星期五
XNA
程式碼:
https://docs.google.com/leaf?id=0B3Ty6sBCJ2uhM2QzNjk5ZDYtMTA5Ny00NzE0LWEzZWUtMzIzMmIxOTZjNjEy&hl=en
2010年11月18日 星期四
紅綠燈(2)
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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
Timer t = new Timer();
int count;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
t.Interval = 1000;
t.Enabled = false;
t.Tick += new EventHandler(Timer_Tick);
}
private void button1_Click(object sender, EventArgs e)
{
t.Start();
count = 0;
}
public void Timer_Tick(object sender, EventArgs eArgs)
{
count = count % 3 + 1;
switch (count)
{
case 1:
pictureBox1.Visible = true;
pictureBox2.Visible = false;
pictureBox3.Visible = false;
pictureBox4.Visible = false;
pictureBox5.Visible = false;
pictureBox6.Visible = false;
pictureBox7.Visible = false;
break;
case 2:
pictureBox1.Visible = false;
pictureBox2.Visible = true;
pictureBox3.Visible = false;
pictureBox4.Visible = false;
pictureBox5.Visible = false;
pictureBox6.Visible = false;
pictureBox7.Visible = false;
break;
case 3:
pictureBox1.Visible = false;
pictureBox2.Visible = false;
pictureBox3.Visible = true;
pictureBox4.Visible = false;
pictureBox5.Visible = false;
pictureBox6.Visible = false;
pictureBox7.Visible = false;
break;
}
}
private void button2_Click(object sender, EventArgs e)
{
pictureBox1.Visible = false;
pictureBox2.Visible = false;
pictureBox3.Visible = false;
pictureBox4.Visible = false;
pictureBox5.Visible = true;
pictureBox6.Visible = true;
pictureBox7.Visible = true;
t.Enabled = false;
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
Timer t = new Timer();
int count;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
t.Interval = 1000;
t.Enabled = false;
t.Tick += new EventHandler(Timer_Tick);
}
private void button1_Click(object sender, EventArgs e)
{
t.Start();
count = 0;
}
public void Timer_Tick(object sender, EventArgs eArgs)
{
count = count % 3 + 1;
switch (count)
{
case 1:
pictureBox1.Visible = true;
pictureBox2.Visible = false;
pictureBox3.Visible = false;
pictureBox4.Visible = false;
pictureBox5.Visible = false;
pictureBox6.Visible = false;
pictureBox7.Visible = false;
break;
case 2:
pictureBox1.Visible = false;
pictureBox2.Visible = true;
pictureBox3.Visible = false;
pictureBox4.Visible = false;
pictureBox5.Visible = false;
pictureBox6.Visible = false;
pictureBox7.Visible = false;
break;
case 3:
pictureBox1.Visible = false;
pictureBox2.Visible = false;
pictureBox3.Visible = true;
pictureBox4.Visible = false;
pictureBox5.Visible = false;
pictureBox6.Visible = false;
pictureBox7.Visible = false;
break;
}
}
private void button2_Click(object sender, EventArgs e)
{
pictureBox1.Visible = false;
pictureBox2.Visible = false;
pictureBox3.Visible = false;
pictureBox4.Visible = false;
pictureBox5.Visible = true;
pictureBox6.Visible = true;
pictureBox7.Visible = true;
t.Enabled = false;
}
}
}
紅綠燈
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 WindowsFormsApplication3
{
public partial class Form1 : Form
{
int i, j;
public Form1()
{
InitializeComponent();
i = 0;
}
private void timer1_Tick(object sender, EventArgs e)
{
i++;
i = i % 3;
label1.Text = Convert.ToString(i);
button1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
j++;
j = j % 3;
switch (j)
{
case 0:
button1.Enabled = true;
timer1.Interval = 300;
break;
case 1:
button2.Enabled = true;
timer1.Interval = 300;
break;
case 2:
button3.Enabled = true;
timer1.Interval = 3000;
break;
}
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
int i, j;
public Form1()
{
InitializeComponent();
i = 0;
}
private void timer1_Tick(object sender, EventArgs e)
{
i++;
i = i % 3;
label1.Text = Convert.ToString(i);
button1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
j++;
j = j % 3;
switch (j)
{
case 0:
button1.Enabled = true;
timer1.Interval = 300;
break;
case 1:
button2.Enabled = true;
timer1.Interval = 300;
break;
case 2:
button3.Enabled = true;
timer1.Interval = 3000;
break;
}
}
}
}
2010年11月11日 星期四
(期中考)產生亂數
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 WindowsFormsApplication2
{
public partial class Form1 : Form
{
int[] arry = new int[9];
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button5_Click(object sender, EventArgs e)
{
int temp;
int rdno;
arry[0] = 0;
arry[1] = 1;
arry[2] = 2;
arry[3] = 3;
arry[4] = 4;
arry[5] = 5;
arry[6] = 6;
arry[7] = 7;
arry[8] = 8;
Random rd = new Random();
button5.Text = Convert.ToString(rd.Next(0, 9));
rdno = rd.Next(0, 9);
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 1];
arry[arry.Length - 1] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 2];
arry[arry.Length - 2] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 3];
arry[arry.Length - 3] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 4];
arry[arry.Length - 4] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 5];
arry[arry.Length - 5] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 6];
arry[arry.Length - 6] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 7];
arry[arry.Length - 7] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 8];
arry[arry.Length - 8] = temp;
//output
button5.Text = Convert.ToString(rd.Next(0, 9));
button1.Text = Convert.ToString(arry[0]);
button2.Text = Convert.ToString(arry[1]);
button3.Text = Convert.ToString(arry[2]);
button4.Text = Convert.ToString(arry[3]);
button6.Text = Convert.ToString(arry[4]);
button7.Text = Convert.ToString(arry[5]);
button8.Text = Convert.ToString(arry[6]);
button9.Text = Convert.ToString(arry[7]);
button10.Text = Convert.ToString(arry[8]);
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
int[] arry = new int[9];
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button5_Click(object sender, EventArgs e)
{
int temp;
int rdno;
arry[0] = 0;
arry[1] = 1;
arry[2] = 2;
arry[3] = 3;
arry[4] = 4;
arry[5] = 5;
arry[6] = 6;
arry[7] = 7;
arry[8] = 8;
Random rd = new Random();
button5.Text = Convert.ToString(rd.Next(0, 9));
rdno = rd.Next(0, 9);
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 1];
arry[arry.Length - 1] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 2];
arry[arry.Length - 2] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 3];
arry[arry.Length - 3] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 4];
arry[arry.Length - 4] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 5];
arry[arry.Length - 5] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 6];
arry[arry.Length - 6] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 7];
arry[arry.Length - 7] = temp;
rdno = rd.Next(0, 9);
button5.Text = Convert.ToString(rd.Next(0, 9));
temp = arry[rdno];
arry[rdno] = arry[arry.Length - 8];
arry[arry.Length - 8] = temp;
//output
button5.Text = Convert.ToString(rd.Next(0, 9));
button1.Text = Convert.ToString(arry[0]);
button2.Text = Convert.ToString(arry[1]);
button3.Text = Convert.ToString(arry[2]);
button4.Text = Convert.ToString(arry[3]);
button6.Text = Convert.ToString(arry[4]);
button7.Text = Convert.ToString(arry[5]);
button8.Text = Convert.ToString(arry[6]);
button9.Text = Convert.ToString(arry[7]);
button10.Text = Convert.ToString(arry[8]);
}
}
}
2010年11月5日 星期五
ox遊戲
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;
}
}
}
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;
}
}
}
訂閱:
文章 (Atom)