在XAML中,我们可以使用 包装;
<TextBlock Height="219" HorizontalAlignment="Left" Margin="12,330,0,0" Name="textBlock1"
Text="TextBlock TextBlock" TextWrapping="NoWrap" VerticalAlignment="Top" Width="438" />
但我使用这样的代码:
this.textBlock1.Text = "TextBlock TextBlock";
它没有包裹。我想知道如何使它在.cs文件中工作。
答案 0 :(得分:4)
this.textBlock1.Text = "TextBlock" + Environment.NewLine + "TextBlock";
但"TextBlock TextBlock"
等于"TextBlock\rTextBlock"