문제

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