标签:style ar color sp log ef br c# 控件
//设置鼠标在控件上面时,改变光标形状
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;
}
标签:style ar color sp log ef br c# 控件
原文地址:http://www.cnblogs.com/fx427103/p/4154770.html