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=81792 --- shadow/81792 2007-06-01 06:59:49.000000000 -0400 +++ shadow/81792.tmp.7394 2007-06-01 06:59:49.000000000 -0400 @@ -0,0 +1,38 @@ +Bug#: 81792 +Product: Mono: Class Libraries +Version: 1.0 +OS: other +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: TextBox is drawing the text to close to the bottom when there's no borders + +MS draws the text so that it's all visible within the text area, we draw +it so that the baseline is aligned with the bottom of the text area (so +that the bottom part of letters like j, p, g, etc, get cut off). + +Repro: + +using System; +using System.Windows.Forms; + +class a { + static void Main () { + using (Form f = new Form ()) { + TextBox t = new TextBox (); + t.Text = "aiIj"; + t.BorderStyle = BorderStyle.None; + f.Controls.Add (t); + f.ShowDialog (); + } + } +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
