Akhil Sivanandan
Akhil Sivanandan

Reputation: 332

Navigating to phone settings

How to navigate to phone settings page on tapping a button in windows phone? I've a settings button, on tapping the control, the phone settings page has to be opened.

Upvotes: 1

Views: 111

Answers (1)

PolarBear
PolarBear

Reputation: 203

Looks like you can open only a particular section of settings page. Try this:

    using Microsoft.Phone.Tasks; 

ConnectionSettingsTask task = new ConnectionSettingsTask(); 
task.ConnectionSettingsType = ConnectionSettingsType.WiFi;
    task.Show();

Ref: http://themagicsoftware.com/blog/2013/01/how-to-open-the-settings-screen-programmatically-in-windows-phone.html

Upvotes: 1

Related Questions