I am using WPF, there is a TextBlock in my UserControl. The Text is very long, so I wrap it with TextWrapping = Wrap. The question is, how can I change the line spacing?
The code is something like:
<TextBlock Text="abcdefghijklmn" TextWrapping="Wrap"/>
The output is like:
abcdefghijk
lmn
What I want is:
abcdefghijk
<--increase this line spacing-->
lmn
Great Thanks.
question from:https://stackoverflow.com/questions/16510420/how-to-change-line-spacing-in-textblock