How to set vertical spacing between WinForms XPTaskBar?
Vertical spacing
Setting the VerticalPadding property to desired value for XPTaskBar will set the vertical spacing between XPTaskBarBoxes. You can also use the VGap property of flowlayout to provide padding between XPTaskBarBoxes.
C#
this.xpTaskBar1.VerticalPadding = 20;
C#
this.xpTaskBar1.FlowLayout.VGap = 20;
VB
Me.xpTaskBar1.VerticalPadding = 20
VB
Me.xpTaskBar1.FlowLayout.VGap = 20