Frage

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

War es hilfreich?

Lösung

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).

Andere Tipps

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;
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top