Hi,
The easiest way to launch Bluetooth settings app is by calling
LaunchUriAsync(Uri) passing in the URI that use the scheme associated with the Bluetooth app ("ms-settings-bluetooth:")...
Xaml :
<Button Content="Bluetooth Settings" HorizontalAlignment="Left" Margin="135,275,0,0" VerticalAlignment="Top" Tapped="showBluetoothSettings"/>
Code Behind :
async void showBluetoothSettings(object sender, TappedRoutedEventArgs e)
{
await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-settings-bluetooth:"));
}
The best is still to come ;)