如何将wpf mediakit添加到我的项目中?

时间:2013-04-22 09:11:13

标签: wpf xaml media-player wpf-mediakit

我将WPFMediaKit.dll引用到我的项目中,这是我的xaml:

<Window x:Class="WPFCameraTest.Window2"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:Controls="clr-namespace:WPFMediaKit.DirectShow.Controls;assembly=WPFMediaKit"
    Title="Window2" Height="300" Width="300">
<Grid>
    <Controls:VideoCaptureElement ></Controls:VideoCaptureElement>
</Grid>

但我得到错误:

  

名称“VideoCaptureElement”在名称空间“clr-namespace:WPFMediaKit.DirectShow.Controls; assembly = WPFMediaKit”中不存在。

我正在跳过什么?

4 个答案:

答案 0 :(得分:0)

  1. 你有可能写错了VideoCaptureElement!?!?!你写道:VideoCaputreElemnt
  2. 我认为您必须使用<WPFMediaKit:VideoCaptureElement >
  3. 进行调用

答案 1 :(得分:0)

请在此处查看wiki条目: https://github.com/Sascha-L/WPF-MediaKit/wiki

.#webclasspath

答案 2 :(得分:0)

<Controls:VideoCaptureElement>适合我〜

您是否在项目中添加了“WPF MediaKit”参考? 并确保WPF MediaKit中存在“VideoCaptureElement.cs”?

答案 3 :(得分:0)

不要通过dll文件添加引用。

使用Nuget Package并查找WPFMediaKit并添加它。