我想包装一个radiobutton中显示的文字。我试过这个(源自here),但它不起作用:
<RadioButton x:Uid="SettingsAICChains" >
<RadioButton.Resources>
<Style TargetType="TextBlock">
<Setter Property="TextWrapping" Value="WrapWholeWords" />
</Style>
</RadioButton.Resources>
</RadioButton>
我还尝试将此x:Uid
放在radiobutton内的Textblock中,如here所述,但它也不起作用。
出于本地化原因,我需要通过x:Uid
加载文字内容。