In jedem Standard-WPF-Fenster wie unten sind vier Namespaces referenziert. Ich weiß:Wo finde ich den XAML-Namespace d = "http://schemas.microsoft.com/expression/blend/2008" Mapping-Bibliothek?
xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"
und
xmlns: x = "http : //schemas.microsoft.com/winfx/2006/xaml "
sind Mapping-Bibliothek PresentationCore.dll und PresentationFramework.dll. Aber wo finde ich die Bibliotheksdateien Mapping-Namespace
xmlns: d = "http://schemas.microsoft.com/expression/blend/2008"
und
xmlns: mc = "http://schemas.openxmlformats.org/markup-compatibility/2006"
?
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="MainWindow" Height="350" Width="525">
<Grid>
</Grid>
</Window>
http://msdn.microsoft.com/en-us/library/cc189061%28v=vs.95%29.aspx - überprüfen Sie dies - Es besagt, dass der Ausdruck/blend/2008 nur im Designer verwendet wird und wird zur Laufzeit ignoriert. (Das würde keine Zuordnung bedeuten?) – LukeP
Ich würde das auch gerne wissen. Ich versuche, ein in Visual Studio erstelltes Benutzersteuerelement in PowerShell zu verwenden, und ich erhalte eine Fehlermeldung über diesen Namespace. – Simon
Überprüfen Sie meine Antwort hier .. [http://stackoverflow.com/questions/25508755/http-schemas-microsoft-com-winfx-2006-xaml-presentation-definition/34635758#34635758][1] – Moumit