检测组合框上的鼠标右键
如何检测简单下拉组合(样式 = 1 的组合框)上的鼠标单击(或 mousedown)事件?
我无法在 vb6 IDE 中看到组合框的 mouseclick 或 mousedown 事件处理程序。
我的目标是检测右键单击。
提前致谢。
How to detect a mouse click (or mousedown) event on a simple dropdown combo (combobox with style=1)?
I am unable to see mouseclick or mousedown event handlers for combobox in my vb6 IDE.
My aim is to detect right click.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果未公开事件,您可能需要对控件进行子类化并处理 WM_RBUTTONDOWN 消息。
If the events aren't exposed, you may need to subclass the control and handle the WM_RBUTTONDOWN message.