我正在尝试使用 WPF 模板,我应该将它包含在我的 App.xaml 中,但我收到“不支持嵌套属性:ResourceDictionaries.MergedDictionaries”错误和“未找到可附加属性“MergedDictionaries”键入“资源字典”。
<Application x:Class="Unico.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary.MergedDictionaries>
<!-- Set default skin -->
<ResourceDictionary Source="\ExpressionDark.xaml"/>
<ResourceDictionary Source="\WindowStyle.xaml"/>
</ResourceDictionary.MergedDictionaries>
<Style TargetType="{x:Type Rectangle}" />
</Application.Resources>
</Application>
我已经尝试了一切,但仍然无法解决这个问题。任何想法?谢谢。