[Mono-bugs] [Bug 80511][Min] New - Size grip on scrollable control does not work
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Fri Jan 12 17:43:46 EST 2007
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=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: toshok at ximian.com
+ReportedBy: georgegiolfan at yahoo.com
+QAContact: mono-bugs at ximian.com
+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).
More information about the mono-bugs
mailing list