We switch FormBorderStyle from 'None' to 'Sizeable' and calculate the border width and height using code like this:
return new Size((Size.Width - ClientSize.Width)/2, (Size.Height - ClientSize.Height)/2);
The problem is that the first value, width, is set to a strange value 33 while the 2nd height value is reported correctly (7). All is ok if we access the same code after the form has been displayed, but we need the correct width/height values before the form appears on the screen.
How to fix that? And are there other methods to calculate the value we need? Such .NET system properties like SystemInformation.FrameBorderSize do not help in that.