[Mono-bugs] [Bug 78559][Nor] New - ListBox does not update the entire list on scrolling by keys

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Jun 1 04:42:30 EDT 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 atsushi at ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=78559

--- shadow/78559	2006-06-01 04:42:30.000000000 -0400
+++ shadow/78559.tmp.25564	2006-06-01 04:42:30.000000000 -0400
@@ -0,0 +1,60 @@
+Bug#: 78559
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: mkestner at ximian.com                            
+ReportedBy: atsushi at ximian.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: ListBox does not update the entire list on scrolling by keys
+
+When you scroll listbox up or down by keyboard navigation by up, down,
+pageup, pagedown, home or end, it does not redraw the required items area.
+
+Steps to reproduce the problem:
+1. Run winforms/listbox/swf-listbox-selections.exe
+2. press any of the keys mentioned above.
+
+Actual Results:
+
+It updates only selected item and leaves remaining items as is. Thus, say
+we have list items with selected item like 
+
+----------------
+ this is item 0
+ this is item 1
+[this is item 2]
+ this is item 3
+----------------
+
+after hitting down key two times, it becomes
+
+----------------
+ this is item 0
+ this is item 1
+ this is item 3
+[this is item 4]
+----------------
+
+Expected Results:
+
+It should be
+
+----------------
+ this is item 1
+ this is item 2
+ this is item 3
+[this is item 4]
+----------------
+
+Additional Information:
+
+Might be only true to windows (haven't tried on Linux).


More information about the mono-bugs mailing list