在 .Net Compact Framework 中检测手指滑动
正在寻找一种在 Windows Mobile 应用程序中检测手指手势的方法。 主要目标:检测用户何时在屏幕上做出向左或向右滑动的手势。 类似于用于解锁 iPhone 的滑动动作。
Looking for a way to detect finger gestures in my Windows Mobile applications. Main goal: detect when user gestures a left or right swipe across the screen. Similar to the swipe motion used to unlock an iPhone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当
MouseDown
事件发生,同时存储位置。MouseMove
事件,并检查执行操作所需的相对于MouseDown
事件的方向和距离地方。MouseUp
事件并检查方向和距离。Set a flag when a
MouseDown
event occurs, storing the position as well.MouseMove
events, and check the direction and distance relative to theMouseDown
event that you require for an action to take place.MouseUp
events and check the direction and distance.