How to enable or disable Wifi in Windows Phone using C# ?

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

  1. martin
    February 15, 2012
    Reply

    Can you open the location settings in a similar manner??

  2. February 16, 2012
    Reply

    Currently , thats not possible

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you will learn about sync provider notifications in Windows 11 and how to disable or enable it...
In this tutorial, let’s learn how to enable or disable the startup sound in Windows 11. By default, when Windows...
The CameraCaptureTask allows the Windows Phone 7 App to launch the Camera Application . This will be useful when the...