I can't seem to find System.Windows.Media reference for my C# project. It is not there at all!

Help and tips? enter image description here

有帮助吗?

解决方案

System.Windows.Media is a namespace - most of the types within it are in the assembly PresentationFramework.dll or PresentationCore.dll.

You should look up whichever type you're interested in (via MSDN), and check which assembly it's in. You've got to distinguish between namespaces and assemblies - they're different concepts. You add a reference to an assembly as part of the project configuration, but specify the namespace in your source code (usually via a using directive).

其他提示

System.Windows.Media is not a reference, it is a namespace.

This namespace belongs on PresentationFramework.dll or PresentationCore.dll

Namespace:  System.Windows.Media
Assembly:  PresentationFramework (in PresentationFramework.dll)

You can add these dll files in your current project and then you can use it via using.

using System.Windows.Media;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top