本文介绍了在Surface Pro 3中,如果VideoDevicesComboBox.SelectedItem =“Microsoft LifeCam Rear”,则程序崩溃。为什么? ? ?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 WebcamCtrl.StartCapture(); 
foreach (EncoderDevice device in _vidDevices.Where(device = > device.Name == Microsoft LifeCam Rear))
{
VideoDevicesComboBox.SelectedItem = device;
break ;
}
解决方案

WebcamCtrl.StartCapture();
foreach (EncoderDevice device in _vidDevices.Where(device => device.Name == "Microsoft LifeCam Rear"))
{
    VideoDevicesComboBox.SelectedItem = device;
    break;
}
解决方案


这篇关于在Surface Pro 3中,如果VideoDevicesComboBox.SelectedItem =“Microsoft LifeCam Rear”,则程序崩溃。为什么? ? ?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 01:32