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.

链接地址: http://www.djcxy.com/p/9086.html

上一篇: 哪里最好在c#中使用yield return?

下一篇: 在Compact Framework中访问Panel的VerticalScroll属性