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

Reply via email to