在WPF应用程序中打开/关闭蓝牙

时间:2015-12-26 11:43:11

标签: wpf bluetooth visual-studio-2015 windows-10

我正在使用Visual Studio 2015和Windows 10开发WPF应用程序。我有一个特定的要求,我可以使用蓝牙进行以下操作。该应用程序应在平板电脑上运行,因此它了解到Bluettooth不应该有硬件按钮。我的要求是

  1. 使用拨动开关(如果它是ON和反之亦然。
  2. )关闭蓝牙
  3. 打开/关闭其可见性状态
  4. 我一直在寻找一段时间但却找不到任何东西。我尝试了这段代码没有任何成功。任何人都可以查看它吗?

    if (!BluetoothRadio.IsSupported)
    {
       tbOutput.Text = "No Bluetooth Adapter found!!!";
    } else
    {
      if (BluetoothRadio.PrimaryRadio.Mode == RadioMode.PowerOff)
          BluetoothRadio.PrimaryRadio.Mode = RadioMode.Discoverable;
    }
    

0 个答案:

没有答案