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

Reply via email to