[Mono-bugs] [Bug 80795][Wis] New - Cursor not visible in Combobox
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun Feb 11 17:05:59 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=80795
--- shadow/80795 2007-02-11 17:05:59.000000000 -0500
+++ shadow/80795.tmp.25530 2007-02-11 17:05:59.000000000 -0500
@@ -0,0 +1,45 @@
+Bug#: 80795
+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: Cursor not visible in Combobox
+
+Observed: no cursor
+Expected: blinking curor must be visible
+
+Code to reproduce:
+
+using System.Windows.Forms;
+
+static class Program {
+ static void Main() {
+ Application.Run(new Frm());
+ }
+}
+
+class Frm : Form {
+
+ public Frm() {
+ 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