Pergunta

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

Foi útil?

Solução

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top