我几天前开始为Windows编程,但在左上角显示我的RichTextBox Paragraph元素内容时出现问题。它显示在我的网格的内容页面中间。
这是我的代码:
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<RichTextBox>
<Paragraph TextAlignment="Left">
<Bold FontSize="32">Todays Instructions</Bold>
</Paragraph>
<Paragraph>
I want some text to display here.
</Paragraph>
</RichTextBox>
</Grid>
如果您查看此消息的内容框,您会看到我所说的“Hi Everyone”从最左上角开始。我希望我的段落做同样的事情,但它显示在网格的中间。有任何想法吗?提前谢谢。
答案 0 :(得分:0)
将VerticalAlignment="Top"
添加到您的RichTextBox。