1.调用一体机时由于厂家提供的开发包是在标准windows的控件上显示图像与视频的,所以使用WPF开发时,需要嵌入winform控件
引入 WindowsFormsIntegration.dll 和 System.Windows.Forms.dll
声明: xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
使用:
<WindowsFormsHost Grid.Column="0" Margin="5" Width="430" Height="300">
<wf:Panel x:Name="video"/>
</WindowsFormsHost>