up vote 2 down vote favorite
share [g+] share [fb]

Is it possible to always keep selected item in the middle of a listbox? If the user selects an item, I want to scroll so that the newly selected item is in the middle.

I guess it want be possible for the 'edge cases' (the first and last few items), but that's ok.

link|improve this question

72% accept rate
feedback

2 Answers

up vote 2 down vote accepted

David Anson posted some articles on his blog that might help you here: Part 1 and Part 2. He gives an extension method that centers an item in an List Box. You might be able to build on that.

link|improve this answer
feedback

It is possible with couple of lines of custom code. Here's a discussion of a sample implementation. You might need to tweak it a bit to account for even number of items, insted of only odd number, but the general idea is the same.

link|improve this answer
The CarouselListBox seems to include a lot of properties that I cant find on a regular ListBox. How can i get the ScrollViewer for my listbox? – Vegar Feb 27 '09 at 9:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.