Hi,
Is it possible to increase the line height? Some editors like Sublime Text allows you to add some padding (both top and bottom) to increase the line height, which IMO definitively improves the visual.
You can actually achieve something like this in a TextBox/TextBlock by using these attached properties:
TextBlock.LineHeight="12"
TextBlock.LineStackingStrategy="BlockLineHeight"
Thanks.