I am making an rss App where I'd like to include the pull to refresh feature on a pivot item instead of a separate refresh button. I tried different Mouse Event Handlers but they dont work right. Any ideas?
Asked
Active
Viewed 128 times
2 Answers
0
I suggest you use RadDataBoundListBox from Telerik with PivotItem
<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>
Also I recommend you download Telerik WP controls on your phone http://www.telerik.com/products/windows-phone.aspx#Demo

Owidat
- 1,071
- 2
- 15
- 20
-
Nice but no practical use unless you buy the whole suite. Shows constant purchase Alert. – aman shivhare Feb 03 '15 at 20:06
0
I've created a simple control that implements the "Pull to refresh" feature, and the "Load data on demand", you can find it in nuget, read about it from this blog post. Works on both Windows 8 & Windows Phone 8.1

Ateik
- 2,458
- 4
- 39
- 59
-
Hey seems like a nice package but can you make it a level down and allow windowsphone-8 also. – aman shivhare Feb 08 '15 at 06:27