Is there a simple way to just get TextTrimming to work with a ContentPresenter?

I have implict styles for TextBlock and AccessText that have TextTrimming set to CharacterEllipsis, but it's not picked up by the ContentPresenter. I can change the ContentPresenter to an AccessText or TextBlock and set it there, but then the template only handles text content.

Any suggestions?

Thanks!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Implicit Styles for elements that derive from UIElement, but not Control, are not applied if the element is defined in a control's Template unless the implict Style is defined in the application Resources. The same holds true for TextBlocks used by ContentPresenter.

For example, in the following XAML the TextBlock that is ultimately used to present the button's content will not get the implicit Style:

<Window.Resources>
    <Style TargetType="TextBlock">
        <Setter Property="Foreground" Value="Red" />
    </Style>
</Window.Resources>
<StackPanel>
    <Button Content="Will not be red" />
    <TextBlock Text="Will be red" />
</StackPanel>

If you take that exact same Style and move it to the application's Resources, then both will be red:

<Application.Resources>
    <Style TargetType="TextBlock">
        <Setter Property="Foreground" Value="Red" />
    </Style>
</Application.Resources>

So you can either move your implicit Style to application resources, which is generally not a good idea. Or you can customize the display for the specific scenario you have. This can include adding an implicit DataTemplate, or customizing a control's Template.

If you can provide more information, then it would be easier to know which is the best approach.

link|improve this answer
Even the hyperlinks are red, what have you done! – H.B. Apr 28 '11 at 0:28
2  
@H.B. - I painted the town red! – CodeNaked Apr 28 '11 at 0:33
Thanks for this explanation! Another solution posted elsewhere defines a style in the ContentPresenter.Resources, inside the ControlTemplate. I tried this approach and it works. In our case moving the implicit style to Application.Resources would work as all textblocks are supposed to trim. Is adding an implicit datatemplate similar to what I"ve done above? How do you define a datatemplate so that you can support arbitrary content? – dex3703 Apr 28 '11 at 2:42
@dex3703 - You can't have a "global" implicit DataTemplate. You'd have to target the specific types you are displaying, i.e. String or any custom classes you may have. The implicit DataTemple would be useful for cases where you don't want to redefine the ControlTemplate (just to add TextTrimming). But again, the implicit DataTemplate wouldn't apply to arbitrary content. – CodeNaked Apr 28 '11 at 11:40
Is there some reason why adding texttrimming or textwrapping is so hard? – dex3703 Apr 28 '11 at 15:56
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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