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’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...