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

--- shadow/80473        2007-01-07 20:02:20.000000000 -0500
+++ shadow/80473.tmp.3666       2007-01-07 20:02:20.000000000 -0500
@@ -0,0 +1,41 @@
+Bug#: 80473
+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: LinkLabel text truncated
+
+To reproduce, run code in Windows XP in .NET 2 profile
+
+
+Observed: 12345678
+
+Expected: 1234567890
+
+Code to reproduce:
+
+using System.Windows.Forms;
+static class Program {
+       static void Main() {
+               Application.Run(new Frm());
+       }
+}
+
+class Frm : Form {
+       public Frm() {
+               LinkLabel label = new LinkLabel();
+               label.Text = "1234567890";
+               Controls.Add(label);
+       }
+}
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to