FIX. RadForm - the size is increased at when showing the form if its FormBorderStyle property is set to None
How to reproduce: just create a RadForm, in the designer change its size and set its FormBorderStyle property to be None. When the form loads its size will be increased.
Workaround: set its MaximumSize property
this.MaximumSize = new Size(400, 80);