在下面的每个默认 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>