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 WindowsFormsApplication5
{
public partial class Form1 : Form
{
int c = 0;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button1.Text = "O";
}
else
{
button1.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button1.Enabled = false;
judge();
}
private void button2_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button2.Text = "O";
}
else
{
button2.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button2.Enabled = false;
judge();
}
private void button3_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button3.Text = "O";
}
else
{
button3.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button3.Enabled = false;
judge();
}
private void button4_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button4.Text = "O";
}
else
{
button4.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button4.Enabled = false;
judge();
}
private void button5_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button5.Text = "O";
}
else
{
button5.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button5.Enabled = false;
judge();
}
private void button6_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button6.Text = "O";
}
else
{
button6.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button6.Enabled = false;
judge();
}
private void button7_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button7.Text = "O";
}
else
{
button7.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button7.Enabled = false;
judge();
}
private void button8_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button8.Text = "O";
}
else
{
button8.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button8.Enabled = false;
judge();
}
private void button9_Click(object sender, EventArgs e)
{
c = c + 1;
int r;
r = c % 2;
if (r == 0)
{
button9.Text = "O";
}
else
{
button9.Text = "x";
}
textBox1.Text = Convert.ToString(r);
button9.Enabled = false;
judge();
}
private void judge()
{
if(button1.Text==("x") && button2.Text==("x") && button3.Text==("x"))
{
MessageBox.Show("X好棒棒!");
}
if(button4.Text==("x") && button5.Text==("x") && button6.Text==("x"))
{
MessageBox.Show("X好棒棒!");
}
if(button7.Text==("x") && button8.Text==("x") && button9.Text==("x"))
{
MessageBox.Show("X好棒棒!");
}
if(button1.Text==("x") && button4.Text==("x") && button7.Text==("x"))
{
MessageBox.Show("X好棒棒!");
}
if(button2.Text==("x") && button5.Text==("x") && button8.Text==("x"))
{
MessageBox.Show("X好棒棒!");
}
if(button3.Text==("x") && button6.Text==("x") && button9.Text==("x"))
{
MessageBox.Show("X好棒棒!");
}
if(button1.Text==("x") && button5.Text==("x") && button9.Text==("x"))
{
MessageBox.Show("X好棒棒!");
}
if (button3.Text == ("x") && button5.Text == ("x") && button7.Text == ("x"))
{
MessageBox.Show("X好棒棒!");
}
}
}