我认为这与铸造有关:
首先,我为我的图片框声明一个事件处理程序:
pictureBox1.MouseHover += new EventHandler(this.pictureBox1_MouseHover);
接下来,我试图检查鼠标左键是否被按下:
private void pictureBox1_MouseHover(object sender, EventArgs e)
{
if (e.Button == MouseButtons.Left)
{
/*some gibberish for when the left mouse button is held*/
}
}
但这不起作用,因为EventArgs不是MouseEventArgs
我可以Cast或以某种方式转换EventArgs e为被视为 MouseEventArgs 以便上述代码可以工作吗?
UYOU
交互式爱情
相关分类