在下面的每个默认WPF窗口中,引用了四个名称空间.我知道:
的xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"
和
的xmlns:X = "http://schemas.microsoft.com/winfx/2006/xaml"
是映射库PresentationCore.dll和PresentationFramework.dll.但是我在哪里可以找到库文件映射命名空间
的xmlns:d = "http://schemas.microsoft.com/expression/blend/2008"
和
的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>
Run Code Online (Sandbox Code Playgroud)