所以我最近一直在努力学习C#,所以我想我会试试像Tic-Tac-Toe这样简单的项目。我目前正在尝试添加点击功能,以确保它正常工作我放入一个MessageBox.Show以确保它新的哪个区域我点击。但是,当我运行它时没有出现任何错误,但是当我点击一个盒子时没有发生任何事情。有谁知道我的代码有什么问题?它是MessageBox.Show代码或其他东西的问题?这是我的代码:
在Board.cs文件中,我有:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
class Board
{
private Rectangle[,] slots = new Rectangle[3, 3];
private Holder[,] holders = new Holder[3, 3];
public const int X = 0;
public const int O = 1;
public const int B = 2;
public void initBoard()
{
for (int x = 0; x < 3; x++)
{
for (int y = 0; y < 3; y++)
{
slots[x, y] = new Rectangle(x * 167, y * 167, 167, 167);
holders[x, y] = new Holder();
holders[x, y].setValue(B);
holders[x, y].setLocation(new Point(x, y));
}
}
}
public void detectHit(Point loc)
{
int x = 0;
int y = 0;
if (loc.X < 167)
{
x = 0;
}
else if (loc.X > 167 && loc.X < 334)
{
x = 1;
}
else if (loc.X > 334)
{
x = 2;
}
if (loc.Y < 167)
{
y = 0;
}
else if (loc.Y > 167 && loc.Y < 334)
{
y = 1;
}
else if (loc.Y > 334 && loc.Y < 500)
{
y = 2;
}
MessageBox.Show(x.ToString() + ", " + y.ToString() + "/n/n" + loc.ToString());
}
}
class Holder
{
private Point location;
private int value = Board.B;
public void setLocation(Point p)
{
location = p;
}
public Point getLocation()
{
return location;
}
public void setValue(int i)
{
value = i;
}
public int getValue()
{
return value;
}
}
}
然后在我的Form1.cs文件中,我有:
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
{
GFX engine;
Board theBoard;
public Form1()
{
InitializeComponent();
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
Graphics toPass = panel1.CreateGraphics();
engine = new GFX(toPass);
theBoard = new Board();
theBoard.initBoard();
}
private void Form1_Click(object sender, EventArgs e)
{
Point mouse = Cursor.Position;
mouse = panel1.PointToClient(mouse);
theBoard.detectHit(mouse);
}
}
}
答案 0 :(得分:2)
根据您的事件处理程序(Form1_Click)的名称,我怀疑您已将Click事件处理程序与表单的点击事件联系起来,而不是 panel1 的点击事件。请注意,如果用户点击表单内的面板,则仅面板的点击事件将触发,而不是表单。
答案 1 :(得分:1)
您可能没有注册该活动。尝试在构造函数中注册它:
public Form1()
{
InitializeComponent();
//Register click event with handler
this.Click += new EventHandler(Form1_Click);
}
答案 2 :(得分:0)
唯一有意义的解释是Form1_Click
没有运行。如果它被执行,那么detectHit
肯定会运行。肯定会调用MessageBox.Show
。没有执行分支可以避免显示MessageBox.Show
。 MessageBox.Show
执行Form1_Click
时不能调用Click
的唯一可能方法是引发异常。在这种情况下你会注意到这一点。
事件处理程序根本没有连接。或者它与表单的{{1}}事件相关联,但是您单击面板而不是表单。