[Mono-bugs] [Bug 80592][Nor] New - Size grip is not placed correctly
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Tue Jan 23 18:08:24 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=80592
--- shadow/80592 2007-01-23 18:08:24.000000000 -0500
+++ shadow/80592.tmp.2580 2007-01-23 18:08:24.000000000 -0500
@@ -0,0 +1,44 @@
+Bug#: 80592
+Product: Mono: Class Libraries
+Version: 1.2
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+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 is not placed correctly
+
+Steps to reproduce the problem:
+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() {
+ SizeGripStyle = SizeGripStyle.Show;
+ Size = new Size(Width * 2, Height * 2);
+ }
+}
+
+Actual Results:
+A size grip in the center.
+
+Expected Results:
+A size grip in the corner.
+
+How often does this happen?
+Always (on the SVN version).
+
+Additional Information:
+The size grip is moved in OnResize, but, besides OnResize being a virtual
+method, it doesn't seem to work.
More information about the mono-bugs
mailing list