我有个问题。我是新的 Windows Phone 10 开发人员,但我遇到了问题。
如何打开 Lumia 930 的手电筒?我在互联网上找不到任何答案。
非常感谢,问候
我有个问题。我是新的 Windows Phone 10 开发人员,但我遇到了问题。
如何打开 Lumia 930 的手电筒?我在互联网上找不到任何答案。
非常感谢,问候
Windows.Devices.Lights.Lamp 命名空间是您需要查看的地方,有一个 Windows 10 中的 Lamp 使用示例https://github.com/Microsoft/Windows-universal-samples/tree/master/lamp可能是帮助。这是一个基于此的小示例,可替代链接:
using (var lamp = await Lamp.GetDefaultAsync())
{
lamp.BrightnessLevel = 1.0F;
lamp.IsEnabled = true;
}