使用 C# 检测 .NET CF 中组合框上的鼠标/手写笔点击

发布于 2024-12-02 03:19:30 字数 152 浏览 0 评论 0原文

我正在尝试检测 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷爱 2024-12-09 03:19:30

您应该能够使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文