I want to wrap the text displayed in a radiobutton. I've tried this (derived from here) but it does not work:
<RadioButton x:Uid="SettingsAICChains" >
<RadioButton.Resources>
<Style TargetType="TextBlock">
<Setter Property="TextWrapping" Value="WrapWholeWords" />
</Style>
</RadioButton.Resources>
</RadioButton>
I have also tried to put this x:Uid
in a Textblock inside the radiobutton, as explained here, but it does not work either.
I need to load the text content via x:Uid
for localization reasons.