如何判断枢轴轻弹是向右还是向左?

发布于 2024-10-16 17:59:33 字数 29 浏览 0 评论 0原文

哪个事件用于确定用户是向右还是向左轻拂枢轴?

Which event is used to determine if the user flicked the pivot right or left?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

林空鹿饮溪 2024-10-23 17:59:33

Pivot 控件使用 Flick 事件的 FlickEventArgs 中报告的角度来确定导航项目的方式。 180 度的角度表示向右导航,0 度的角度表示向左导航。

如果您想在自己的代码中检测到这一点,您可以使用 Silverlight Windows Phone Toolkit< 中的 GestureService /a> 如本文 或者您可以简单地跟踪 Pivot 控件上的 SelectedIndex 属性来确定用户滑动的方向。

我很想知道你将把这些知识用于什么目的:)

The Pivot control uses the angle reported in the FlickEventArgs of the Flick event to determine which way to navigate the items. An angle of 180 degrees means a navigation to the right, an angle of 0 degrees means a navigation to the left.

If you want to detect this in your own code you could use the GestureService from the Silverlight Windows Phone Toolkit as described in this article or you could simply keep track of the SelectedIndex property on the Pivot control to determine which way the user flicked.

I'd be interested to know to what purpose you're going to put this knowledge :)

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