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

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top