Windows 10手机应用程序打开闪光灯(指示灯)

时间:2015-06-22 11:02:08

标签: windows-10 flashlight torch camera-flash

我有问题。我是一个新的Windows Phone 10开发人员,我有一个问题。

如何在Lumia 930上开启手电筒?我无法在互联网上找到任何答案。

很多,很多, 此致

1 个答案:

答案 0 :(得分:2)

Windows.Devices.Lights.Lamp命名空间是您需要查看的位置,Windows 10 https://github.com/Microsoft/Windows-universal-samples/tree/master/lamp中可能有用的Lamp使用示例。 以下是一个基于此的小例子作为链接的替代方案:

using (var lamp = await Lamp.GetDefaultAsync()) 
{ 
    lamp.BrightnessLevel = 1.0F;
    lamp.IsEnabled = true;
}