[Mono-bugs] [Bug 360875] New: DateTimePicker ClientSize shouldn't include borders
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Tue Feb 12 00:00:25 EST 2008
https://bugzilla.novell.com/show_bug.cgi?id=360875
Summary: DateTimePicker ClientSize shouldn't include borders
Product: Mono: Class Libraries
Version: SVN
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Windows.Forms
AssignedTo: mono-bugs at lists.ximian.com
ReportedBy: jdpurcell2 at yahoo.com
QAContact: mono-bugs at lists.ximian.com
Found By: ---
using System;
using System.Windows.Forms;
class Program {
public static void Main() {
DateTimePicker dtp = new DateTimePicker();
Console.WriteLine(dtp.ClientSize.ToString() + " " +
dtp.Size.ToString());
}
}
Output on MS.NET:
{Width=196, Height=16} {Width=200, Height=20}
Output on Mono:
{Width=200, Height=20} {Width=200, Height=20}
--
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