我正在使用Visual Studio 2015和Windows 10开发WPF应用程序。我有一个特定的要求,我可以使用蓝牙进行以下操作。该应用程序应在平板电脑上运行,因此它了解到Bluettooth不应该有硬件按钮。我的要求是
我一直在寻找一段时间但却找不到任何东西。我尝试了这段代码没有任何成功。任何人都可以查看它吗?
if (!BluetoothRadio.IsSupported)
{
tbOutput.Text = "No Bluetooth Adapter found!!!";
} else
{
if (BluetoothRadio.PrimaryRadio.Mode == RadioMode.PowerOff)
BluetoothRadio.PrimaryRadio.Mode = RadioMode.Discoverable;
}