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