我尝试使用位图检测它是否是我的第一个转弯或第二个转弯(因为它是硬币投掷并显示红色或蓝色),但我有制作IF参数时遇到麻烦。我尝试了一些东西,但似乎没有工作......
private void fastlevel_CheckedChanged(object sender, EventArgs e)
{
if (fastlevel.Checked)
{
//Click X;Y
Thread.Sleep(1000);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
//MessageBox.Show("OK");
{
//if bitmap was found
MessageBox.Show("FIRST TURN");
}
}
else
{
MessageBox.Show("SECOND TURN");
}
}
我也遇到问题,我发现位图我知道文件在资源中,我知道我想要它找到但是它没有
答案 0 :(得分:0)
不确定您打算做什么,但通常可以添加变量来跟踪您的功能状态。如果需要更多状态,也可以使用switch语句。
function Rectangle(length, width) {
this.length = length;
this.width = width;
}
function Square(size) {
this.length = size;
this.width = size;
}
Square.prototype = Object.create(Rectangle.prototype, {
constructor: {
configurable: true,
enumerable: true,
value: square,
writable: true
}
});