我有以下情况
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内容之前加载了吗?如果是这样的话,如何解决全局样式覆盖问题呢?