[Mono-bugs] [Bug 347665] New: DateTimePicker: DropDown calendar not visible
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Tue Dec 11 11:35:08 EST 2007
https://bugzilla.novell.com/show_bug.cgi?id=347665
Summary: DateTimePicker: DropDown calendar not visible
Product: Mono: Class Libraries
Version: 1.2.6
Platform: Other
OS/Version: All
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Windows.Forms
AssignedTo: mono-bugs at ximian.com
ReportedBy: kobruleht2 at hot.ee
QAContact: mono-bugs at ximian.com
Found By: ---
To reproduce, run code,open dropdown calendar.
Observed: Part of calendar outside form not is visible.
Environment:
1.2.6 preview 2
NET 2 profile
System.Drawing & Configuration from Nov 24, 2007 monocharge
Windows XP
VCSE 2008
Code to reproduce:
using System;
using System.Windows.Forms;
class Test {
static void Main() {
try {
Application.Run(new Form1());
} catch (Exception ex) {
MessageBox.Show(ex.ToString());
}
}
}
class Form1 : Form {
public Form1() {
DateTimePicker dtp = new DateTimePicker();
dtp.Top = Height - 100;
Controls.Add(dtp);
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list