[Mono-bugs] [Bug 80473][Wis] New - LinkLabel text truncated
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun Jan 7 20:02:20 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 kobruleht2 at hot.ee.
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: toshok at ximian.com
+ReportedBy: kobruleht2 at hot.ee
+QAContact: mono-bugs at ximian.com
+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);
+ }
+}
More information about the mono-bugs
mailing list