通过Size属性不能得到正确的窗体尺寸, 怎么办?
还需要设置 MaximumSize 属性和你的 size属性尺寸一样。
this.FormBorderStyle = FormBorderStyle.FixedSingle;
this.Size = new Size(43, 386);
this.MaximumSize = new Size(43, 386);