我正在尝试禁用焦点辅助灯,我在MediaCapture.VideoDeviceController.FocusControl
Windows Phone的相机应用程序允许配置聚焦辅助灯:
答案 0 :(得分:0)
查看Microsoft Windows Universal Samples GitHub repo上的CameraManualControls SDK sample。
您将在FlashControl
:
private void FocusLightCheckBox_CheckedChanged(object sender, RoutedEventArgs e)
{
var flashControl = _mediaCapture.VideoDeviceController.FlashControl;
flashControl.AssistantLightEnabled = (FocusLightCheckBox.IsChecked == true);
}