vote up 2 vote down star

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

flag

1 Answer

vote up 2 vote down check

Nevermind. I found the answer in MacDonald's Pro Silverlight 2 in C# 2008:

alt text

"If you've used styles in WPF, you'll find that Silverlight styles are dramatically scaled back ... [for example, you can't] create styles that inherit from other styles."

Too bad. Maybe in Silverlight 3.

link|flag
Yes, it is coming in Silverlight 3 -- timheuer.com/blog/archive/… – Robert Claypool Mar 24 at 15:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.