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=80590 --- shadow/80590 2007-03-09 18:46:10.000000000 -0500 +++ shadow/80590.tmp.1864 2007-03-09 19:49:41.000000000 -0500 @@ -86,6 +86,25 @@ base.OnLoad(e); t.ForeColor = Color.Red; } } Expected results: The text should not be red. + +------- Additional Comments From [EMAIL PROTECTED] 2007-03-09 19:49 ------- +using System.Drawing; +using System.Windows.Forms; +class TestForm : Form { + static void Main() { + Application.Run(new TestForm()); + } + TextBox t = new TextBox(); + public TestForm() { + t.Text = "Test"; + t.ReadOnly = true; + t.ForeColor = Color.Red; + t.ReadOnly = false; + Controls.Add(t); + } +} + +Now the text should be red. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
