使用 windows 窗体应用程序时,您可以创建一个事件,例如图片框。单击事件。在此方法中,单击按钮时将运行所有代码。
现在在另一个事件中,我可以调用 Button1.click 方法,但它是用来做什么的呢?它可以用于这样的语句吗?
private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
{
if(Button1.click == true) // If the button is clicked AND the mouse moves over the picturebox
{
//dance
}
}