TextWrappingを使用したいWPFでTextBlockを使用していますが、XAMLで行ったことは次のとおりです。
<TextBlock TextWrapping="Wrap" Grid.Column="0" Grid.ColumnSpan="4" Grid.Row="0" Margin="5,5,5,5">
<TextBlock.Text>
This is just a test. This is just a test.
</TextBlock.Text>
</TextBlock>
このコードを実行すると、次のような出力が表示されます
This is just a test. Th
is is just a test.
しかし、私は次のような空白だけをラップしたい
This is just a test.
This is just a test.
WPFがこの動作を示している理由を見つけることができません。試しましたがWrapWithOverflow
、IsHyphenationEnabled=true
成功しませんでした。私を助けてください?