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 [EMAIL PROTECTED] 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: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +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); + } +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
