如何捕获 Windows 窗体按钮的鼠标悬停事件
您好,我目前正在使用 Windows 窗体设计一个简单的 UI,这里那里有一些按钮。我一直在搜索,但找不到如何捕获按钮的鼠标悬停事件。你们知道有什么方法可以捕获按钮的鼠标悬停事件吗?
Hi I am currently designing a simple UI using Windows Form, there's a few buttons here and there. I've been searching but cannot find how to catch a mouseover event for the button. Do you guys know any way to capture the mouseover event for the button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用按钮控件的
MouseEnter
、MouseHover
和/或MouseLeave
事件。请访问 MSDN http://msdn 来了解更多信息。 microsoft.com/en-us/library/system.windows.forms.control.mousehover.aspx
Use
MouseEnter
,MouseHover
and/orMouseLeave
event of the button control.Read more at MSDN at http://msdn.microsoft.com/en-us/library/system.windows.forms.control.mousehover.aspx