Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auto Scroll listboxitems placed inside a listbox

HI , i want to auto scroll the listboxitems placed inside a listbox., it has nothing to do related with the scrollbar. Somewhat like what marquee does..Thanks in advance.

like image 545
user281947 Avatar asked May 19 '10 06:05

user281947


People also ask

How do I automatically scroll in listBox?

this can all be done very easily.. when you select an intem from the listbox (via listBox. SelectedIndex = number; or listBox. SelectedItem = "string"; ), the listbox is automatically scrolled to the selected item.

How can list box be made to scroll smoothly?

When the Firefox browser contained all listview items and you hold down the middle mouse button (but not release), and drag it, it should smoothly scroll the listview items.


1 Answers

It seems possible to loop through each item and call this: ScrollIntoView

like image 101
Jimmie Clark Avatar answered Oct 11 '22 03:10

Jimmie Clark