[Mono-bugs] [Bug 80356][Wis] New - Grid active cell content is difficult to read

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sun Dec 24 14:37:02 EST 2006


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 kobruleht2 at hot.ee.

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: toshok at ximian.com                            
+ReportedBy: kobruleht2 at hot.ee               
+QAContact: mono-bugs at ximian.com
+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;
+} }


More information about the mono-bugs mailing list