I have a page with two ListBox controls. The page contains a list of items based on the item\'s category.
There is a header for a category, followed by a ListBox co
All you have to do in order to disable the scroll is just to set ScrollViewer.VerticalScrollBarVisibility="Disabled"
(if you need to disable the horizontal scroll then use ScrollViewer.HorizontalScrollBarVisibility="Disabled"
).
Here is a simple example:
I hope that this will answer your question.