If you are a Developer and have an task to change or view the Wifi Settings via some user interaction , you can use the Launcher “ConnectionSettingsTask” to achieve it.
How to enable or disable Wifi in Windows Phone using C# ?
Just use the ConnectionSettingsType to Wifi and call the show method of the ConnectionSettingsTask . This will Launch the Wifi Settings Window and lets the user to change the Wifi settings or even enable or disable the Wifi .
Yo use the launcher , use the namespace Microsoft.Phone.Tasks;
private void button1_Click(object sender, RoutedEventArgs e) { ConnectionSettingsTask connectionSettingsTask = new ConnectionSettingsTask(); connectionSettingsTask.ConnectionSettingsType = ConnectionSettingsType.WiFi; connectionSettingsTask.Show(); }
2 Comments
Can you open the location settings in a similar manner??
Currently , thats not possible