.NET 4 - 确定 Win 7 中可用的触摸点数量
Windows 7 在计算机属性下报告系统可用的触摸点数量 - 有没有办法在 .NET 4 中获取该信息?
Windows 7 reports the number of touch points available to the system under the computer properties - is there a way to get that info in .NET 4?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 7 通过 GetSystemMetrics(SM_MAXIMUMTOUCCHES) 公开此问题。由于在 C# 中需要此功能,因此需要使用 P/Invoke:
Windows 7 exposes this via GetSystemMetrics(SM_MAXIMUMTOUCHES). Since you need this in C#, you need to use P/Invoke: