[Mono-bugs] [Bug 80287][Min] New - Calendar of DateTimePicker does not move if DateTimePicker is moved.

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sun Dec 17 12:14:11 EST 2006


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 latency at gmx.de.

http://bugzilla.ximian.com/show_bug.cgi?id=80287

--- shadow/80287	2006-12-17 12:14:10.000000000 -0500
+++ shadow/80287.tmp.13163	2006-12-17 12:14:11.000000000 -0500
@@ -0,0 +1,45 @@
+Bug#: 80287
+Product: Mono: Class Libraries
+Version: 1.2
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: Windows.Forms
+AssignedTo: toshok at ximian.com                            
+ReportedBy: latency at gmx.de               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Calendar of DateTimePicker does not move if DateTimePicker is moved.
+
+Run the example below, open the DateTimePicker by clicking on the small
+arrow and then move the form containing the DateTimePicker.
+
+using System;
+using System.Drawing;
+using System.Windows.Forms;
+ 
+ namespace test {
+ 	class Test : Form {
+ 		public static void Main(string[] args) {
+			Application.Run(new Test());
+		}
+		
+		public Test()
+		{
+			DateTimePicker d = new DateTimePicker();
+			this.Controls.Add(d);
+		}
+	}
+}
+
+Actual Results:
+The Calendar remains at it's position while the form can be moved around
+freely.
+
+Expected Results:
+The form can not be moved around until the calendar is closed.


More information about the mono-bugs mailing list