質問

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