//设置鼠标在控件上面时,改变光标形状
private void pictureBox_macroLogo_MouseHover(object sender, System.EventArgs e)
{
this.Cursor = Cursors.Hand;
}
private void pictureBox_macroLogo_MouseLeave(object sender, System.EventArgs e)
{
this.Cursor = Cursors.Default;
}
时间: 2024-10-10 14:35:45