码迷,mamicode.com
首页 > Windows程序 > 详细

C#设置鼠标在控件上面时,改变光标形状

时间:2014-12-10 10:45:40      阅读:219      评论:0      收藏:0      [点我收藏+]

标签: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;
}

C#设置鼠标在控件上面时,改变光标形状

标签:style   ar   color   sp   log   ef   br   c#   控件   

原文地址:http://www.cnblogs.com/fx427103/p/4154770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!