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