I have a set of Key/Value pairs I want to display on a WPF Window. I\'m using a grid to lay them out like so:
Easiest way is to set a margin on the individual controls. Setting it on the TextBoxes should be enough, because once they're spaced out the Labels will set vertically in the center of each row and have plenty of space anyway.
You can set it once using a style:
...
This will add a 4-pixel margin to the bottom of any TextBox inside your grid.