jakesays-old / gwen-dotnet

Automatically exported from code.google.com/p/gwen-dotnet
0 stars 0 forks source link

Resize arrow are avaible on MessageBox and don't works #33

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a Messabox.
2. Put your mouse near the left, right and bottom border, a resize arrow is 
visible.

What is the expected output? What do you see instead?
MessageBox normally can't be resize. The problem is not really here, the arrow 
are avaible and the MessageBox can't be resize by the user, so it's useless. 
And if you try to resize the MessageBox with the right border it's moving the 
MessageBox.

What version of the product are you using? On what operating system?
Gwen.Net Revision 144, SFML 2.0, .Net 4.5

Original issue reported on code.google.com by pontorea...@gmail.com on 25 Aug 2013 at 3:35

GoogleCodeExporter commented 9 years ago
MessageBox control doesn't seem to ever tell the base Window control to not 
allow resizing. You can fix this by adding the following line into the 
MessageBox control constructor:
base.DisableResizing();

Original comment by chuck.m....@gmail.com on 24 Oct 2013 at 8:43