This is probably something simple, but I can’t seem to find the answer.
I want to have a button on an app that navigates to a core OS page, eg.. Email setup, or Mobile network.
I assume it is a variation of below, but I im not sure what the format would be for accessing a page on the os from the app.
Any help would be greatly appreciated.
private void button_Click(object sender, EventArgs e)
{
this.NavigationService.Navigate(new Uri(
String.Format("/PageName.xaml)),
UriKind.Relative));
}
At the moment, there’s no way to access every OS page, such as the Mobile Network page. However, there are some Launchers and Choosers you can use. That MSDN link is for 7.1 (Mango) so not all Launchers and Choosers mentioned there will be available if you’re targetting 7.0. Is there anything in particular you’re trying to achieve? There may be an alternate method available.