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=80356 --- shadow/80356 2006-12-24 14:37:02.000000000 -0500 +++ shadow/80356.tmp.14690 2006-12-24 14:37:02.000000000 -0500 @@ -0,0 +1,53 @@ +Bug#: 80356 +Product: Mono: Class Libraries +Version: 1.1 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Grid active cell content is difficult to read + +To reproduce: + +1. Run code in Windows XP 640x480 resolultion +2. Activate first cell in grid. + +Observed: + +Active cell contents is difficult to read due to smoothing effect applied +to characters (see attachment) + +Expected: + +Active cell contents must be same as in other cells. + + +Code to reproduce: + +using System.Windows.Forms; +using System.Data; +static class Program {static void Main(){ +Application.Run(new Frm());}} + +class Frm : Form { + +public Frm() { +DataTable dt = new DataTable(); +DataColumn column = new DataColumn(); +column.AllowDBNull = false; +dt.Columns.Add(column); +dt.Rows.Add("iiiiiiiiii"); +dt.Rows.Add("iiiiiiiiii"); +DataGrid dg = new DataGrid(); +this.Controls.Add(dg); +dg.DataSource = dt; +} } _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
