【发布时间】:2016-12-04 10:48:16
【问题描述】:
关于计划:
我编写了一个用于制作井字游戏的 C# 代码。它是在 Windows 窗体应用程序(Visual Studio)中制作的。 在玩这个游戏时,当 X 或 O 获胜时,调用方法=> checkForwinner() 进行水平、垂直和对角线检查以确定获胜者。变量 there_is_a_winner 设置为 true,并显示消息“获胜者获胜”。否则它会检查平局。
错误:
当我编译此代码时,它显示 0 错误/警告/消息。但尽管如此,此代码不起作用。它无法确定获胜者。弹出框,显示谁赢了/画了..从不执行,除此之外,这段代码工作正常。我希望有人可以提供帮助。
提前致谢。
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
{
bool turn = true;//(To check turn) True means X's turn, False=Y turn
int turn_count = 0;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)/*About Section*/
{
MessageBox.Show("This Program is of Tic Tac Toe. It was created by Me for his C# project.","Tic Tac Toe -About");
}
private void exitToolStripMenuItem_Click(object sender, EventArgs e)/*Exit Section*/
{
Application.Exit();
}
private void button_click(object sender, EventArgs e)
{
Button b = (Button)sender;
if(turn)
b.Text="x";
else
b.Text="o";
turn=!turn;
b.Enabled = false;//disable the button, to prevent double entering.
turn_count++;
}
private void checkForwinner()
{
bool there_is_a_winner= false;
//horizontal check
if ((A1.Text == A2.Text) && (A2.Text == A3.Text) && (!A1.Enabled))
there_is_a_winner = true;//if above conditions are true, then bool variable=true.
else if ((B1.Text == B2.Text) && (B2.Text == B3.Text) && (!B1.Enabled))
there_is_a_winner = true;
else if ((C1.Text == C2.Text) && (C2.Text == C3.Text) && (!C1.Enabled))
there_is_a_winner = true;
//Vertical Check
else if ((A1.Text == B1.Text) && (B1.Text == C1.Text) && (!A1.Enabled))
there_is_a_winner = true;
else if ((A2.Text == B2.Text) && (B2.Text == C2.Text) && (!A2.Enabled))
there_is_a_winner = true;
else if ((A3.Text == B3.Text) && (B3.Text == C3.Text) && (!A3.Enabled))
there_is_a_winner = true;
//Diagonal Check
else if ((A1.Text == B2.Text) && (B2.Text == C3.Text) && (!A1.Enabled))
there_is_a_winner = true;
else if ((A3.Text == B2.Text) && (B2.Text == C1.Text) && (!C1.Enabled))
there_is_a_winner = true;
if (there_is_a_winner)
{
dissableButtons();// If there is a winner call for buttons to be disbaled.
String winner = "";
if (turn)
winner = "0";
else
winner = "x";
MessageBox.Show(winner + "Wins!", "Congratulations!");
}
else
{
if (turn_count == 9)
MessageBox.Show("Match Draw", "Result");
}
}
private void dissableButtons()
{
try
{
foreach (Control c in Controls)
{
Button b = (Button)c;
b.Enabled = false;//If there is a winner, disable all the buttons on the form
}
}
catch { }
}
// New Game//Need to Reset Everything
private void toolStripMenuItem2_Click(object sender, EventArgs e)
{
turn = true;
turn_count = 0;
try
{
foreach (Control c in Controls)
{
Button b = (Button)c;
b.Enabled = true;
b.Text = "";//Initially we want blank Text
}
}
catch { }
}
}
}
【问题讨论】:
-
使用调试器并单步执行您的代码。 “它不起作用”也太宽泛了 - 请解释您提供的输入和您期望的输出。
标签: c# visual-studio visual-studio-2010