wpf 从何处获取 Microsoft.Expression.Encoder.Devices 的 DLL

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/29283833/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-13 13:02:34  来源:igfitidea点击:

Where to get DLL for Microsoft.Expression.Encoder.Devices

c#wpfdllmicrosoft-expression

提问by Awesome_girl

I'm trying to run this WebCam project which written in C#, WPF Application. The project I'm trying to run is on CodeProject website. LINKThey didn't provide me with Microsoft.Expression.Encoder.DevicesDLL. I searched it online, I cannot find it.

我正在尝试运行这个用 C#、WPF 应用程序编写的 WebCam 项目。我正在尝试运行的项目位于 CodeProject 网站上。LINK他们没有向我提供Microsoft.Expression.Encoder.DevicesDLL。我在网上搜索过,找不到。

using Microsoft.Expression.Encoder.Devices;

ERROR: The Type or NameSpace name 'Expression' does not exist in the namespace 'Microsoft'(are you missing an assembly reference?)

错误:命名空间“Microsoft”中不存在类型或命名空间名称“Expression”(您是否缺少程序集引用?)

回答by NextInLine

As per Microsoft's documentation, you'll need Expression Studio. Expression Studio is no longer available for sale as a stand-alone product; however, Expression Encoder 4isavailable as a free download and should contain the dll you are looking for.

根据Microsoft 的文档,您将需要 Expression Studio。Expression Studio 不再作为独立产品出售;然而,Expression Encoder的4可以免费下载的,应该包含你正在寻找的dll。

回答by Awesome_girl

so I had to look at the references section in the same CodeProject link i posted and download and install 'Expression Encoder 4' after that, depending on where that thing installed, the DLL file will be found there. Then just copy that DLL to your project and add to references.

所以我不得不查看我发布的同一个 CodeProject 链接中的参考部分,然后下载并安装“Expression Encoder 4”,根据安装的位置,DLL 文件将在那里找到。然后只需将该 DLL 复制到您的项目并添加到引用中。