标签: windows windows-phone windows-10 windows-10-mobile windows-10-universal
我正在尝试打开Windows 10设备的相机灯。截至目前,我只能让光线短暂闪光然后再关闭。有没有办法让灯光保持开启状态。我目前正在使用:
using (var lamp = await Lamp.GetDefaultAsync()) { lamp.BrightnessLevel = 1.0F; lamp.IsEnabled = true; }
答案 0 :(得分:5)
您将灯置于using语句中,该语句在执行退出块时处理它。处理灯会将其关闭。
using