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=80207

--- shadow/80207        2007-01-02 13:10:05.000000000 -0500
+++ shadow/80207.tmp.9453       2007-01-02 15:19:46.000000000 -0500
@@ -1,13 +1,13 @@
 Bug#: 80207
 Product: Mono: Class Libraries
 Version: 1.2
 OS: Windows XP
 OS Details: 
-Status: RESOLVED   
-Resolution: FIXED
+Status: REOPENED   
+Resolution: 
 Severity: Unknown
 Priority: Normal
 Component: Windows.Forms
 AssignedTo: [EMAIL PROTECTED]                            
 ReportedBy: [EMAIL PROTECTED]               
 QAContact: [EMAIL PROTECTED]
@@ -71,6 +71,23 @@
 Created an attachment (id=18420)
 Proposed patch
 
 
 ------- Additional Comments From [EMAIL PROTECTED]  2007-01-02 13:10 -------
 Committed your patch on revision 70369.  Thanks.
+
+------- Additional Comments From [EMAIL PROTECTED]  2007-01-02 15:19 -------
+using System.Windows.Forms;
+class TestForm : Form {
+    static void Main() {
+        Application.Run(new TestForm());
+    }
+    public TestForm() {
+        ListView l = new ListView();
+        l.View = View.Details;
+        ColumnHeader c = new ColumnHeader();
+        l.Columns.Add(c);
+        l.Items.Add("Very long text ...............................");
+        c.Width = -2;
+        Controls.Add(l);
+    }
+}
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to