I want to build up styles in Silverlight XAML for optimum reuse. For Example:
<UserControl.Resources>
<Style x:Key="MyStyle" TargetType="TextBlock">
<Setter Property="Margin" Value="2,2,2,2" />
<Setter Property="Foreground" Value="DarkRed" />
</Style>
<Style x:Key="MyBoldStyle" TargetType="TextBlock">
<Setter Property="Style" Value="{StaticResource MyStyle}" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
</UserControl.Resources>
This implementation does not work. (Applying MyBoldStyle to a TextBlock does not pick up any property values from MyStyle.)
How can I make one style inherit from another?
March 2009 Update: Style Inheritance is coming in Silverlight 3
Styling improvements will include dynamic changes and BasedOn styling. This first enables you to change a style at runtime or to also mark a control’s style to be based upon an existing style definition. -- Tim Heuer
