[Mono-bugs] [Bug 80355][Wis] New - Grid first cell not selected

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sun Dec 24 14:36:14 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=80355

--- shadow/80355	2006-12-24 14:36:13.000000000 -0500
+++ shadow/80355.tmp.14670	2006-12-24 14:36:14.000000000 -0500
@@ -0,0 +1,50 @@
+Bug#: 80355
+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 first cell not selected
+
+To reproduce:
+
+Run the code
+
+Observed:
+
+Grid first cell is not selected
+
+Expected:
+
+Grid first cell should be selected
+
+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