我们如何在pivot中使用pageindiactor
我想在pivot中使用页面指示器控件,向用户显示他们吸引的页面。但我也想在页面指示器中添加一些功能,以借助像android这样的页面指示器来选择页面。但我不知道如何这是可能的。如果你知道,请给我发送链接或示例
i want to use page indicator control in pivot ,to show the user which page they attract.but i also want to add some functionality in page indicator to select the page with the help of page indicator like android .but i don't know how it is possible.if u know then send me a link or example
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以自己创建 ui 并使用 selectedIndex 属性更新当前页面指示器。还有其他开发人员创建的控件,例如此处,你可以使用。但为了完全控制功能,我建议您创建自己的或使用其他开发人员提供的源代码(请参阅上面的链接)来获取想法。
为了使实施更加清晰:
您可以添加包含等于枢轴数的点列表的相同 UIElement,并使用
SelectedIndex
属性填充相应的点。向此元素添加手势事件并处理它以适当地更改SelectedIndex
。You could create the ui yourself and update the current page indicator by using the selectedIndex property. There are controls created by other developers, like here, which you could use. But for complete control over the functionality, I'd suggest you create your own or use the source code provided by other developers (see above link) to get ideas.
To make the implementation clearer:
You can add the same UIElement containing a list of dots equal to the number of pivots, and using the
SelectedIndex
property you can fill the corresponding dot. Add gesture events to this element and handle it to change theSelectedIndex
appropriately.