对象的高度约为 60 像素,但文本仅约 12 像素高。我尝试设置 Height="30" 但文本不可读。
<RichTextBox IsReadOnly="True" Focusable="False" >
<FlowDocument xml:space="preserve" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" >
<Table>
<TableRowGroup>
<TableRow>
<TableCell BorderThickness="0" >
<Paragraph>
<Bold>
<Run Text="test"/>
</Bold>
</Paragraph>
</TableCell>
</TableRow>
</TableRowGroup>
</Table>
</FlowDocument>
</RichTextBox>