您如何以可以覆盖全局样式的方式声明样式?

时间:2019-01-13 22:33:54

标签: wpf xaml

我有以下情况

custom control library 
    <Style TargetType="{x:Type local:CustomControl}" x:Key="Default"> ... </Style>
    <Style TargetType="{x:Type local:CustomControl}" BasedOn="{StaticResource Default}"> ... </Style>
application which references custom control library
    <Style TargetType="{x:Type local:CustomControl}" BasedOn="{StaticResource Default}"> ... </Style>

由于某些原因,我在app.xaml中指定的样式似乎无效。可能是App.xaml在外部的generic.xaml内容之前加载了吗?如果是这样的话,如何解决全局样式覆盖问题呢?

0 个答案:

没有答案