オブジェクトの高さは約 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>