0

几天前我开始为 Windows 编程,但无法在左上角显示我的 RichTextBox 段落元素内容。它显示在我的网格的内容页面的中间。

这是我的代码:

<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>

如果您查看此消息的内容框,您会看到我所说的“大家好”从最左上角开始。我希望我的段落做同样的事情,但它显示在网格的中间。有任何想法吗?提前致谢。

4

1 回答 1

0

添加VerticalAlignment="Top"到您的 RichTextBox。

于 2012-10-14T16:09:08.430 回答