How do I add padding, or some space between the textboxes when using dockstyle.top property?
for(int i =0; i< 10; i++) { textboxes[i] = new TextBox();
Another work around that suits smaller layouts is to just add a Label control afterwards also docked to the Top, which is not AutoSized, Text=" ", Height=your padding. This is quite useful for the odd bit of padding when using the designer.
Label
Top
Text=" "
Height=your padding