Question

I want an shortcut from my app, when I click on the icon, user will navigate to setting page (Start + theme, Wifi, sound, etc...)

I've seen this in many app (one click to wifi, bluetooth, cellular...) So there's def somehow I can achieve this. I'm using SDK 8

Was it helpful?

Solution

There are Windows-Phone Tasks available for certain Settings you listed

Example for WIFI:

var page = new Microsoft.Phone.Tasks.ConnectionSettingsTask();
page.ConnectionSettingsType = Microsoft.Phone.Tasks.ConnectionSettingsType.WiFi;
page.Show();

complete reference can be found here:

ConnectionSettingsType

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top