Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.