我正在关注位于此处的教程:http: //msdn.microsoft.com/en-us/library/windows/apps/hh465045.aspx
在有关设置应用程序样式的部分中,他们希望您在 ResourceDictionary 中插入一些 Xaml
<SolidColorBrush x:Key="WindowsBlogBackgroundBrush" Color="#FF0A2562"/>
<Style x:Key = "WindowsBlogLayoutRootStyle" TargetType = "Panel" BasedOn = "{StaticResource LayoutRootStyle}">
<Setter Property="Background" Value="{StaticResource WindowsBlogBackgroundBrush}"/>
</Style>
但是,编译器给了我这些错误:
错误 WMC0035:对“ResourceDictionary”对象的“_Items”属性的重复分配
属性元素不能位于元素内容的中间。它们必须在内容之前或之后。
有人对这里发生的事情有任何想法吗?
谢谢