Cómo especificar la etiqueta BasedOn en un estilo a un estilo definido en algún otro archivo.Herencia de estilo basada en XAML diferente
ejemplo,
Dictionary1.xaml define
<Style x:Key="basicStyle" TargetType="TextBlock" >
<Setter Property="FontSize" Value="24"></Setter>
<Setter Property="Foreground" Value="DarkGray"></Setter>
<Setter Property="FontWeight" Value="Bold"></Setter>
</Style>
En Dictionary2.xaml necesito algo así como
<Style x:Key="headerStyle" TargetType="TextBlock" >
<Setter Property="FontSize" Value="46"></Setter>
<Setter Property="Foreground" Value="DarkGray"></Setter>
<Setter Property="FontWeight" Value="Bold"></Setter>
</Style>
¿Cómo lograr esto?
Estaba buscando exactamente lo mismo. Para en el momento, utilizaré la manera fácil y también continuaré explorando SharedResourceDictionary. – Tilak