1

我正在尝试为 Windows 8 应用程序包装单选按钮文本。

这是我尝试过的代码:

<RadioButton x:Name="ans2" HorizontalAlignment="Left" FontSize="20"
 Margin="10,0,0,10" VerticalAlignment="Center" Click="ansClick">
    <TextBlock Text="RadioButton" TextWrapping="Wrap"/>
</RadioButton>

它不起作用,有什么建议吗?

4

2 回答 2

3

尝试这个:

<RadioButton>
   <TextBlock Text="This is text" TextWrapping="Wrap" ></TextBlock>
</RadioButton>
于 2013-03-31T03:24:19.847 回答
0

尝试这个

  TextBlock txtAnswer = new TextBlock();
  txtAnswer.Foreground = new SolidColorBrush(Colors.White);
  txtAnswer.Text = "CONTENT";
  txtAnswer.TextWrapping = TextWrapping.Wrap;
  CheckBox CheckBoxAnswer = new CheckBox();
  CheckBoxAnswer.Content = txtAnswer;   
于 2014-03-13T03:48:20.737 回答