我希望能够使用面板或类似工具在Winform上绘制图形。如果图形变得比控件大,我似乎无法看到有关添加滚动条的任何内容吗?
是否可以使用面板执行此操作,或者是否存在允许它的类似控件?
感谢。
答案 0 :(得分:19)
将AutoScroll属性设置为true,将AutoScrollMinSize属性设置为图像的大小。现在,当图像太大时,滚动条会自动出现。
您需要从Panel继承自己的类,以便可以在构造函数中将DoubleBuffered属性设置为true。否则闪烁会很明显。一些示例代码:
using System;
using System.Drawing;
using System.Windows.Forms;
class ImageBox : Panel {
public ImageBox() {
this.AutoScroll = true;
this.DoubleBuffered = true;
}
private Image mImage;
public Image Image {
get { return mImage; }
set {
mImage = value;
if (value == null) this.AutoScrollMinSize = new Size(0, 0);
else {
var size = value.Size;
using (var gr = this.CreateGraphics()) {
size.Width = (int)(size.Width * gr.DpiX / value.HorizontalResolution);
size.Height = (int)(size.Height * gr.DpiY / value.VerticalResolution);
}
this.AutoScrollMinSize = size;
}
this.Invalidate();
}
}
protected override void OnPaint(PaintEventArgs e) {
e.Graphics.TranslateTransform(this.AutoScrollPosition.X, this.AutoScrollPosition.Y);
if (mImage != null) e.Graphics.DrawImage(mImage, 0, 0);
base.OnPaint(e);
}
}
答案 1 :(得分:0)
我不是100%肯定你要完成的任务,但这里有一个类似的SO question可能对你有帮助。
您还可以尝试使用PictureBox,随着图形变大,您将手动更改其大小。然后将表单AutoScroll设置为true。