[Mono-bugs] [Bug 80746][Nor] New - DataGridViewColumn.HeaderText does not work
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Feb 7 05:23:56 EST 2007
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 georgegiolfan at yahoo.com.
http://bugzilla.ximian.com/show_bug.cgi?id=80746
--- shadow/80746 2007-02-07 05:23:56.000000000 -0500
+++ shadow/80746.tmp.17817 2007-02-07 05:23:56.000000000 -0500
@@ -0,0 +1,41 @@
+Bug#: 80746
+Product: Mono: Class Libraries
+Version: 1.2
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: toshok at ximian.com
+ReportedBy: georgegiolfan at yahoo.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: DataGridViewColumn.HeaderText does not work
+
+Description of Problem:
+Setting DataGridViewColumn.HeaderText does not have any effect.
+
+Steps to reproduce the problem:
+Compile and run the following program.
+using System.Diagnostics;
+using System.Windows.Forms;
+class Test {
+ static void Main() {
+ DataGridViewColumn c = new DataGridViewColumn();
+ c.HeaderText = "Test";
+ Debug.Assert((string)c.HeaderCell.Value == c.HeaderText);
+ }
+}
+
+Actual Results:
+Assertion failed.
+
+Expected Results:
+No failures.
+
+How often does this happen?
+Always (on the SVN version).
More information about the mono-bugs
mailing list