Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As titled, and I mean something like below:

<Style TargetType="{x:Type TextBlock}" 
       TargetType="{x:Type Label}"  
       TargetType="{x:Type Button}" >

This is actually for the sake of using a 3rd party control, I have inherited their class. But the template doesn't apply to the SubClass because the TargetType is on the base class. So I would like to set multiple TargetType to make it able to apply for both.

share|improve this question
1  
gah... I seen that, but that's assign the style on every defined element. In the case if I have a Grid and I will dynamically to add those items to the Grid, then i will have to dynamicallly to set the the style for each element each time I add ... – King Chan Feb 10 '12 at 19:08
@sll It is not a duplicate. OP is asking about using the same base style for implicit control styles, not about making one style that can be used by multiple control types. – Rachel Feb 10 '12 at 19:12
@Rachel : Apologize. deleted my comment – sll Feb 10 '12 at 21:39

2 Answers

up vote 21 down vote accepted

No you cannot, however I often create a style for a shared base class such as FrameworkElement, and then create my individual control styles that are BasedOn the base style

<Style TargetType="{x:Type FrameworkElement}">
    <!-- Shared Setters -->
</Style>

<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource {x:Type FrameworkElement}}" />
<Style TargetType="{x:Type Label}" BasedOn="{StaticResource {x:Type FrameworkElement}}" />
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type FrameworkElement}}" />
share|improve this answer
Thanks, this is what I want to do. – King Chan Feb 10 '12 at 19:12
Good idea! I just got back to a WPF this week after being away for a while and I'm going to use this strategy. – kenny Jun 9 '12 at 13:31

The answer is no.

TargetType is a property of Style and can only be set once. To insure type safty, the style should target a specific type in order to know what properties to set.

However, there is a work around. You can take the common properties of all the types you have and define them in one style. Then make specific styles for each of the specific controls and use the BasedOn property to inherit from the basic style.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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