Xaml 如何在windowsphone Pivot中创建拉入刷新功能?

Xaml 如何在windowsphone Pivot中创建拉入刷新功能?,xaml,windows-phone-7,windows-phone-8,pivotviewer,Xaml,Windows Phone 7,Windows Phone 8,Pivotviewer,我正在制作一个rss应用程序,其中我希望在一个透视项上包含pull to refresh功能,而不是一个单独的刷新按钮。我尝试了不同的鼠标事件处理程序,但它们不能正常工作。有什么想法吗?我建议您将Telerik的RadDataBoundListBox与PivotItem一起使用 另外,我建议您在手机上下载Telerik WP controls我创建了一个简单的控件,它实现了Pull to refresh功能和按需加载数据,您可以在中找到它,从中阅读。适用于Windows 8和Windows P

我正在制作一个rss应用程序,其中我希望在一个透视项上包含pull to refresh功能,而不是一个单独的刷新按钮。我尝试了不同的鼠标事件处理程序,但它们不能正常工作。有什么想法吗?

我建议您将Telerik的RadDataBoundListBox与PivotItem一起使用


另外,我建议您在手机上下载Telerik WP controls

我创建了一个简单的控件,它实现了Pull to refresh功能和按需加载数据,您可以在中找到它,从中阅读。适用于Windows 8和Windows Phone 8.1


很好,但没有实际用途,除非你买整套。显示持续购买警报。Hey看起来是一个不错的软件包,但您能否将其降低一个级别,并允许windowsphone-8。
<phone:PivotItem Header="Title" Foreground="Black">
<telerikPrimitives:RadDataBoundListBox>
    <telerikPrimitives:RadDataBoundListBox.PullToRefreshIndicatorStyle>
        <Style TargetType="telerikListBox:PullToRefreshIndicatorControl">
           <Setter Property="RefreshTimeLabelFormat" Value="last refresh time:{0:H:mm}"/>
        </Style>
    </telerikPrimitives:RadDataBoundListBox.PullToRefreshIndicatorStyle>
</telerikPrimitives:RadDataBoundListBox>