我有一个文本,我希望它是合理的。
在像这样的TextBlock中:
<TextBlock Width="Auto" TextAlignment="Justify"/>
它表示不支持。
如何在TextBlock或其他控件中对文本进行对齐?
答案 0 :(得分:4)
您可以使用RichTextBox控件解决此问题:
<RichTextBox TextAlignment="Justify" IsReadOnly="True">
<Paragraph>
Put your text here
</Paragraph>
</RichTextBox>