使用 C# 检测 .NET CF 中组合框上的鼠标/手写笔点击
我正在尝试检测 Windows Mobile 应用程序中的组合框何时被鼠标单击击中。不幸的是,.NET CF2.0 中的这个组件没有 MouseClick 事件(而 Desktop .NET 有)。有人知道如何使用 C# 捕捉组合框项目列表上的鼠标/手写笔点击吗?
谢谢你!
I´m trying to detect when a combobox in my Windows Mobile application is hit by a mouse click. Unfortunately this component in .NET CF2.0 doesn´t have a MouseClick event (whereas Desktop .NET does). Does someone have an idea of how to catch mouse/stylus clicks over the items list of a combobox using C#?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用 MouseDown/MouseUp 事件来获得与 MouseClick 相同的行为。您只需确保两种情况下的对象相同,并在事件之间存储一些状态。
You should be able to use the MouseDown/MouseUp events to get the same behavior as MouseClick. You will just have to make sure the object is the same is both cases and store some state between events.