I am very new in SilverLight and Windows Phone programming. I am working on one twitter application. In Timeline view - when I click on refresh application fetches twitter feeds data and update on top of already existing feeds. I saved all earlier feed in isolated storage.
Now my problem is whenever I refresh feeds listbox position goes to top. How can I retain the position where scroll is earlier? I am total new in SilverLight and Windows Phone.
<ListBox ItemsSource="{Binding feeds}" Margin="0,10,0,0">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding FeedText}" Style="{StaticResource PhoneTextNormalStyle}" />
<TextBlock Text="{Binding FeedDate}" Style="{StaticResource PhoneTextNormalStyle}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>