I was wondering how to change my navigation system between pages on a w8 project.
For example I have page 1, panorama with a list of items. If I scroll horizontal until the middle of the screen and I clik on an item I am going page 2. When I click on go back, Frame.GoBack() method is called. It will then reecreate a page, so the user will see the beginning of the panorama.
I was wondering how to keep the screen position? If someone has any links or ideas, they are welcome!
You can set
in the constructor of page 1. Normally pages are constructed each time they are navigated to. If you set
NavigationCacheMode, they will be constructed once[1]. If you later navigate back to it, you won’t get a new instance.[1] If the runtime flushes the cache or you do so by setting the
CacheSizeof the Frame to0, the page will be reconstructed.