This question is locked. New answers and comments are not allowed.
I'm sure there's a simple way to do this, but I'm rather a novice, almost completely self-taught, so whatever the way, I'm not aware of it... Is there a simple way to wrap the text in the Content property of a RadToggleSwitch? Here's the scenario...
Right now the Content property is bound to a strings resource (for localization). The string changes with position of the switch. I would like to enable TextWrapping so that in languages that take more space than English, I won't be running out of room. Here's what it looks like now:
The liveTileConverter just switches between two strings depending on the bool of IsChecked. Like I said, all I want is to be able to wrap in case the text goes longer than the space needed in English.
Thanks,
Rich
Right now the Content property is bound to a strings resource (for localization). The string changes with position of the switch. I would like to enable TextWrapping so that in languages that take more space than English, I won't be running out of room. Here's what it looks like now:
<telerikPrimitives:RadToggleSwitch Content="{Binding UseLiveTile, Source={StaticResource Settings}, Converter={StaticResource liveTileConverter}}" IsChecked="{Binding UseLiveTile, Source={StaticResource Settings}, Mode=TwoWay}" />The liveTileConverter just switches between two strings depending on the bool of IsChecked. Like I said, all I want is to be able to wrap in case the text goes longer than the space needed in English.
Thanks,
Rich