I want to access my page to setup the XAML Page:
Dim Pg As New PageListPickerSelection
Pg.StartCalculating(199,"Z-UU", MyCalculationDataIEnumList, myImageSource)
App.NavigationService.Navigate(New Uri("/uc/ListPicker/PageListPickerSelection.xaml", UriKind.Relative))
But NavigationService.Navigate does not support Objects or referenced pages.
How is the correct procedure to show the own page?
Or asked in another way: How does the "ListPicker in the WP7" solve this when showing his separated page?
Regards
If I understand your question, you are asking how to configure a page before navigating to it, correct? The navigation service will create your pages as you navigate to them on the fly. It is not possible to give the navigation service the page as an object If you need to pass data into a page you can use the normal method of appending params to a URI as such (using c# as I am not familiar with VB):
Later in the PageListPickerSelection's OnNavigatedTo() method you can parse the parameters again as such: