我有PictureBox picture。
PictureBox picture
我用:
picture.Size = bmp.Size; picture.Image = bmp;
假设有两个整数maxWidth和maxHeigth。 我想picture在其大小超过maxWidth和/或时向其中添加垂直/水平滚动条maxHeight。我怎样才能做到这一点?
maxWidth
maxHeigth
picture
maxHeight
您可以轻松地使用PanelControl
Panel
在面板中插入一个面板,例如panel1并设置
panel1.AutoScroll = true;
插入一PictureBox到Panel,说画面和设定
PictureBox
picture.SizeMode = PictureBoxSizeMode.AutoSize;
并设置图像
picture.Image = bmp;
希望这可以帮助