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=80294 --- shadow/80294 2006-12-21 12:16:12.000000000 -0500 +++ shadow/80294.tmp.22274 2007-01-16 02:22:26.000000000 -0500 @@ -11,13 +11,13 @@ AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] TargetMilestone: 1_2 URL: Cc: -Summary: NumericUpDown with TextAlign set to Right displays left aligned text after scrolling +Summary: TextBox with TextAlign set to Right displays left aligned text Description of Problem: NumericUpDown with TextAlign set to Right displays left aligned text after scrolling Steps to reproduce the problem: @@ -44,6 +44,25 @@ How often does this happen? Always (on monocharge 20061217 but not on v. 1.2.2.1). ------- Additional Comments From [EMAIL PROTECTED] 2006-12-17 19:35 ------- After further investigation I found that the bug is in TextBox. + +------- Additional Comments From [EMAIL PROTECTED] 2007-01-16 02:22 ------- +changing the summary to reflect the textbox nature of the bug. + +here's the textbox test: + +using System.Windows.Forms; +class TestForm : Form { + static void Main() { + Application.Run(new TestForm()); + } + public TestForm() { + TextBox t = new TextBox (); + t.TextAlign = HorizontalAlignment.Right; + Controls.Add(t); + t.Text = "Hello world"; + } +} + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
