[Mono-bugs] [Bug 80250][Wis] New - Pressing right arrow in a list view results in a crash
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Dec 13 12:01:27 EST 2006
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 georgegiolfan at yahoo.com.
http://bugzilla.ximian.com/show_bug.cgi?id=80250
--- shadow/80250 2006-12-13 12:01:27.000000000 -0500
+++ shadow/80250.tmp.13731 2006-12-13 12:01:27.000000000 -0500
@@ -0,0 +1,44 @@
+Bug#: 80250
+Product: Mono: Class Libraries
+Version: 1.2
+OS: unknown
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: Windows.Forms
+AssignedTo: toshok at ximian.com
+ReportedBy: georgegiolfan at yahoo.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Pressing right arrow in a list view results in a crash
+
+Description of Problem:
+Pressing right arrow in a list view results in a crash.
+
+Steps to reproduce the problem:
+1. Compile and run the following program.
+using System.Windows.Forms;
+class TestForm : Form {
+ static void Main() {
+ Application.Run(new TestForm());
+ }
+ public TestForm() {
+ ListView listView = new ListView();
+ listView.Items.Add("Test");
+ Controls.Add(listView);
+ }
+}
+2. Press right arrow.
+
+Actual Results:
+The program crashes.
+
+Expected Results:
+The program does not crash.
+
+How often does this happen?
+Always, on both stable and SVN version.
More information about the mono-bugs
mailing list