自定义控件继承ScrollableControl实现自动滚动条
自定义控件的滚动条一直不愿意弄,今晚细看了UserControl的继承结构,感觉是利用ScrollableControl控件实现的,于想查了该基类的使用方法。MSDN中的说明我不得要领,还好在CodeProject找到了一个教程
主题是:Creating a scrollable and zoomable image viewer in C# ,有4个部分组成
- Part 1: The image viewer
- Part 2: Auto scrolling
- Part 3: Panning and keyboard support
- Part 4: Zooming, auto center, size to fit and more!
如果你也只是关心如何在自定义控件实现自动滚动条,可以只看第二部分。
http://www.codeproject.com/Articles/320059/Creating-a-scrollable-and-zoomable-image-viewer-in
其实主要工作只有以下2步。
1.将整个实际需要绘制的区域(有可能超出控件的大小)告诉控件
this.AutoScrollMinSize = new Size(width, height);
2.控件绘件时,需要按自动滚动的位置( this.AutoScrollPosition)调整绘制的开始位置
protected override void OnPaint(PaintEventArgs e) { base.OnPaint(e); int x = 20 + this.AutoScrollPosition.X; int y = 20 + this.AutoScrollPosition.Y; this.doc.DrawContent(0, new System.Drawing.Point(x, y), e); }