如何在c#中激发MouseDown事件(而不是点击)?
我设计了一个GUI计算,我使用了数字的平面按钮,为了获得按钮点击的感觉,我改变了鼠标按下的颜色,但是当我使用数字键盘键进行计算时,我能够刺激点击事件。如何激发 MouseDown 事件?
I have designed a GUI calc ,I have used flat buttons for the numbers, to get the button click feel I have changed the mouse down color, but when I use the numpad keys to do calc I am able to stimulate the click event. How do I stimulate MouseDown event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 mousedown 事件中获取更改按钮颜色的代码,将其重构为自己的方法,并从 keydown 事件中调用它。
Take the code that changes the button color from the mousedown event, refactor it into it's own method and call it from the keydown event as well.