Reputation: 332
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
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();
Upvotes: 1