我有这个文本块
<TextBlock Text="{x:Bind item}" Width="100" Margin="10,0,0,0" FontSize="15" />
我想如果文本超出文本块的宽度以打破下一行 我如何实现这一目标
this my text this is the newline
of the text
目前,如果文字超过宽度100,则会将其剪掉
答案 0 :(得分:1)
为TextWrapping="Wrap"
TextBlock
<TextBlock Text="{x:Bind item}" Width="100" Margin="10,0,0,0" FontSize="15" TextWrapping="Wrap"/>
了解详情:TextBlock,TextWrapping