官方说的用途有下面这些:
目前对这个文件了解不深,不过昨天用到了一下。
我主要是希望定义一些重用的自定义样式,查资料说把样式定义在Themes文件夹下面的Generic.xaml就可以到处引用了,可事实上是在前台引用时出现错误“未发现**Style”,没定义?明明写了在Generic.xaml中了。所以我怀疑程序是不是真的会默认到Generic.xaml中查找Style,我尝试把Style放到App.xaml中是可以的(App.xaml放的可是全局资源啊),最后我的解决方法是在App.xaml添加Generic.xaml的引用路径。
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergeDictionaries>
<ResourceDictionary Source="Themes/Generic.xaml"/>
</ResourceDictionary.MergeDictionaries>
</ResourceDictionary>
<ResourceDictionary>
<ResourceDictionary.MergeDictionaries>
<ResourceDictionary Source="Themes/Generic.xaml"/>
</ResourceDictionary.MergeDictionaries>
</ResourceDictionary>
</Application.Resources>
It Work!