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=80511 --- shadow/80511 2007-01-12 17:43:46.000000000 -0500 +++ shadow/80511.tmp.6931 2007-01-12 17:43:46.000000000 -0500 @@ -0,0 +1,48 @@ +Bug#: 80511 +Product: Mono: Class Libraries +Version: 1.2 +OS: All +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Minor +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Size grip on scrollable control does not work + +Description of Problem: +Dragging size grip on a scrollable control seems to resize the control +itself. + +Steps to reproduce the problem: +1. Compile and run the following program. +using System.Drawing; +using System.Windows.Forms; +class TestForm : Form { + static void Main() { + Application.Run(new TestForm()); + } + public TestForm() { + ScrollableControl c = new ScrollableControl(); + c.Dock = DockStyle.Fill; + c.AutoScroll = true; + c.AutoScrollMinSize = new Size(1000, 1000); + Controls.Add(c); + } +} +2. Use the size grip. + +Actual Results: +Useless and incorrect rendering of the control. + +Expected Results: +The form resizes. + +How often does this happen? +Always (on SVN version). _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
