https://msdn.microsoft.com/en-us/library/ms229627.aspx Margin and Padding Precise placement of controls on your form is a high priority for many applications. The System.Windows.Forms namespace gives you many layout features to accomplish this. Two o
如果margin给的是四个值比如:margin:0px 0px 0px 0px;代表:margin: top right bottom left代表从上右下左,顺时针方向.如果margin给的是三个值比如:margin:0px 0px 0px;代表:margin: top left-right bottom;代表上 左右 下.中间一个值被左右两个占用.