[Mono-bugs] [Bug 80011][Min] New - Form.MaximumSize does not work

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Nov 23 02:56:23 EST 2006


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by georgegiolfan at yahoo.com.

http://bugzilla.ximian.com/show_bug.cgi?id=80011

--- shadow/80011	2006-11-23 02:56:23.000000000 -0500
+++ shadow/80011.tmp.23929	2006-11-23 02:56:23.000000000 -0500
@@ -0,0 +1,45 @@
+Bug#: 80011
+Product: Mono: Class Libraries
+Version: 1.2
+OS: Windows XP
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: Windows.Forms
+AssignedTo: toshok at ximian.com                            
+ReportedBy: georgegiolfan at yahoo.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Form.MaximumSize does not work
+
+Description of Problem: 
+Form.MaximumSize does not work.
+
+Steps to reproduce the problem:
+1. Compile and run the following program.
+using System.Drawing;
+using System.Windows.Forms;
+class TestApplication {
+    static void Main() {
+        Application.Run(new TestForm());
+    }
+}
+class TestForm : Form {
+    public TestForm() {
+        MaximumSize = new Size(100, 100);
+    }
+}
+2. Resize the form.
+
+Actual Results:
+The form can be freely resized.
+
+Expected Results:
+The form cannot be resized past the specified size.
+
+How often does this happen? 
+Always.


More information about the mono-bugs mailing list