如何判断枢轴轻弹是向右还是向左?
哪个事件用于确定用户是向右还是向左轻拂枢轴?
Which event is used to determine if the user flicked the pivot right or left?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
哪个事件用于确定用户是向右还是向左轻拂枢轴?
Which event is used to determine if the user flicked the pivot right or left?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
Pivot
控件使用Flick
事件的FlickEventArgs
中报告的角度来确定导航项目的方式。 180 度的角度表示向右导航,0 度的角度表示向左导航。如果您想在自己的代码中检测到这一点,您可以使用 Silverlight Windows Phone Toolkit< 中的
GestureService
/a> 如本文 或者您可以简单地跟踪Pivot
控件上的SelectedIndex
属性来确定用户滑动的方向。我很想知道你将把这些知识用于什么目的:)
The
Pivot
control uses the angle reported in theFlickEventArgs
of theFlick
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 theSelectedIndex
property on thePivot
control to determine which way the user flicked.I'd be interested to know to what purpose you're going to put this knowledge :)