我正在开发一个Windows Mobile 6.0项目。 我想在Windows窗体中更改horizantal自动滚动,我用
this.AutoScrollPosition = new Point(0,100);
但不起作用。 有什么帮助吗?
答案 0 :(得分:2)
将AutoScroll
设为true
ctrl.AutoScroll = true;//this is false in default
ctrl.AutoScrollPosition = new Point(0,100);