Access VerticalScroll property of Panel in the Compact Framework
In the standard version of .NET, you can access the VerticalScroll
property of Panel
controls to view or modify properties such as SmallChange
. However, this is not exposed in the .NET Compact Framework.
This MSDN article shows that a standard ScrollBar
control can be accessed in the Compact Framework, but not the scrollbar on the Panel
control with AutoScroll
enabled.
How do you set the SmallChange
and other properties of the scrollbars on a Panel
control in the Compact Framework? If required (or possible), I'm happy to derive a class from Panel
or modify a registry setting.