[Mono-bugs] [Bug 78709][Nor] New - Form is not resizible when Size	is smaller than MinimumSize
    bugzilla-daemon at bugzilla.ximian.com 
    bugzilla-daemon at bugzilla.ximian.com
       
    Sun Jun 25 22:53:29 EDT 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 atsushi at ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=78709
--- shadow/78709	2006-06-25 22:53:29.000000000 -0400
+++ shadow/78709.tmp.24525	2006-06-25 22:53:29.000000000 -0400
@@ -0,0 +1,37 @@
+Bug#: 78709
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: peter at novonyx.com                            
+ReportedBy: atsushi at ximian.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Form is not resizible when Size is smaller than MinimumSize
+
+If the Size is smaller than MinimumSize, the form is not resizible.
+
+using System;
+using System.Drawing;
+using System.Windows.Forms;
+
+public class Test : Form
+{
+        public static void Main ()
+        {
+                Application.Run (new Test ());
+        }
+
+        public Test ()
+        {
+                Size = new Size (300, 300);
+                MinimumSize = new Size (250, 400);
+        }
+}
    
    
More information about the mono-bugs
mailing list