xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
How is this url mapped to .NET namespaces? Can you give an example how to do the same thing for custom .NET classes/namespaces? Is it an attribute that has to be defined on the namespace itself?
Or is it a matter or using C# aliases as in?:
using alias = FullNamespace
The mapping is done using the
XmlnsDefinitionattribute. For instance :(code from PresentationFramework.dll extracted with Reflector)