up vote 2 down vote favorite
3
share [g+] share [fb]

WPF: Is it possible to use a converter within a style? For instance I am trying to create a styled TextBlock whose text resizes based on the ActualHeight property of the TextBlock. The resizing would be don via converter...

link|improve this question
feedback

2 Answers

up vote 8 down vote accepted

Yes, this is possible. For example:

<Style TargetType="TextBlock">
    <Setter Property="FontSize">
        <Setter.Value>
            <Binding Path="ActualHeight" RelativeSource="{RelativeSource Self}">
                <Binding.Converter>
                    <MyConverter/>
                </Binding.Converter>
            </Binding>
        </Setter.Value>
    </Setter>
</Style>
link|improve this answer
Thanks - this worked perfectly! – K J Dec 18 '08 at 22:54
Sweet___________ – Brent May 25 '11 at 21:31
feedback

I managed to get something similar to work by using:

        <Setter Property="Text">
            <Setter.Value>
                <Binding Path="CompanyName">
                    <Binding.Converter>
                        <conv:UppercaseConverter/>
                    </Binding.Converter>
                </Binding>
            </Setter.Value>
        </Setter>

Hope it works for you too.

Yann

PS - CompanyName is the name of the actual ViewModel property I was binding the textblock to

link|improve this answer
feedback

Your Answer

 
or
required, but never shown