[Mono-bugs] [Bug 80796][Wis] New - Nonfocused combobox text is right-aligned
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun Feb 11 17:06: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 kobruleht2 at hot.ee.
http://bugzilla.ximian.com/show_bug.cgi?id=80796
--- shadow/80796 2007-02-11 17:06:56.000000000 -0500
+++ shadow/80796.tmp.25559 2007-02-11 17:06:56.000000000 -0500
@@ -0,0 +1,49 @@
+Bug#: 80796
+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: Nonfocused combobox text is right-aligned
+
+Observed:
+
+combobox contains 56789 ...
+
+Expected:
+
+combobox must contain 01234 ...
+
+Code to reproduce:
+
+using System.Windows.Forms;
+static class Program {
+ static void Main() {
+ Application.Run(new Frm());
+ }
+}
+
+class Frm : Form {
+ public Frm() {
+ Controls.Add(new TextBox());
+ ComboBox cb = new ComboBox();
+ cb.Text = "012345678901234567890";
+ cb.Top = 30;
+ Controls.Add(cb);
+}}
+
+Environment:
+
+MONO 1.2.3 preview
+Windows XP
+Visual C# Express 2005
More information about the mono-bugs
mailing list