gpt4 book ai didi

c# - Windows 10 蓝牙激活

转载 作者:行者123 更新时间:2023-11-30 16:47:30 27 4
gpt4 key购买 nike

在我的 Windows 10 UWP 应用程序中,我通过执行以下代码激活蓝牙:

var result = await Radio.RequestAccessAsync();
if (result == RadioAccessStatus.Allowed)
{
var bluetooth = (await Radio.GetRadiosAsync()).FirstOrDefault(radio => radio.Kind == RadioKind.Bluetooth);
if (bluetooth != null && bluetooth.State != RadioState.On)
await bluetooth.SetStateAsync(RadioState.On);
}

除了在我的笔记本电脑 (Lenovo Yoga Pro 3) 上,当我的蓝牙在启动时未激活时,此代码工作正常:蓝牙变量为空(因此我无法激活它)。如果我启用蓝牙并禁用它,那么它也可以工作。在另一台笔记本电脑上它可以工作。

那么,蓝牙设备或 Windows 10 操作系统中是否存在启用此行为的参数?

谢谢!

最佳答案

这是一个很好的收获。但是,它不是 Lenovo Yoga 特有的,我也在其他笔记本电脑上看到它。

所以问题是您没有在系统启动时启用“蓝牙支持服务”。

您可以进入服务管理器,找到“蓝牙支持服务”,双击它,在弹出的窗口中,确保将“启动类型”更改为“自动”。

enter image description here

祝你好运!

关于c# - Windows 10 蓝牙激活,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39366085/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com