For an application that I am working on I want to create a custom control that has several buttons on it, If there are too many buttons I need it to scroll. However, I don’t want to use the standard scrollbar instead I just want to have two buttons at either end of the control one to scroll up and the other down. What is the best way to achieve this?
Is it possible to change the style of the scrollbar so that they are just buttons and not the full horizontal GUI?
You would normally use a ScrollViewer to achieve this. For example:
Will display a vertical scrollbar automatically when required.
You can change the behaviour by specifying VerticalScrollbarVisibility like this
There is of course a HorizontalScrollBarVisibility property as well.