gpt4 book ai didi

xaml - 我可以在WPF中包装RadioButton的Content/text值吗?

转载 作者:行者123 更新时间:2023-12-04 15:16:17 25 4
gpt4 key购买 nike

我有一些XAML:

<StackPanel Orientation="Horizontal">
<TextBlock x:Name="KeyLWP" TextWrapping="Wrap" MaxWidth="120">A Letter or Word or Phrase
</TextBlock>
<StackPanel>
<RadioButton x:Name="rdbtnCandidateVal1" Content="Two wrongs don't make a Wright Brothers Grimm was the Thingamabob Dylan Thomas Jefferson Airplane">
</RadioButton>

...在其中,为RadioButton的Content分配了一个长字符串,它只是掉到了地球的边缘。如有必要,如何像使用TextBlock的TextWrapping和MaxWidth属性那样包装它?还是我必须将一个TextBlock与每个RadioButton配对,而避开RadioButton的Content/Text属性?

最佳答案

您有一些选择,可以在“单选按钮样式模板”中做到这一点,以便将其应用于所有这些模板,或者只是在实例级别上快速使用;

<RadioButton>
<RadioButton.Content>
<TextBlock Text="Wrap My Content Pretty Pretty Please" TextWrapping="Wrap"/>
</RadioButton.Content>
</RadioButton>

或者还有其他选择,如果有特定情况,请告诉我,我们将进行排序。

关于xaml - 我可以在WPF中包装RadioButton的Content/text值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27325859/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com