我试图使用诺基亚的示例代码来开发一个带有诺基亚成像 SDK 的应用程序。
BackgroundVideoBrush.SetSource(_photoCaptureDevice);
这里 BackgroundVideoBrush 是取景器的 VideoBrush 类型,_photoCaptureDevice 是 PhotoCaptureDevice 类型。现在这会引发错误
“无法从 'Windows.Phone.Media.Capture.PhotoCaptureDevice' 转换为 'System.Windows.Controls.MediaElement'”
和
“'System.Windows.Media.VideoBrush.SetSource(System.Windows.Controls.MediaElement)' 的最佳重载方法匹配有一些无效参数”
此代码在其名为 FilterEffects 的示例代码中运行良好,并且没有显示错误。为什么呢?如何消除此错误?
诺基亚的示例代码: http: //developer.nokia.com/Resources/Library/Lumia/# !nokia-imaging-sdk/sample-projects/filter-effects.html