我希望获得完整的高度图片,但我只能获得仅显示的截图,但我想获得完整形式的截图,其内容超出可见部分。
我已经看到有列表框How can I take a screenshot of a Winforms control/form in C#?的解决方案,但我正在寻找生成表单的整页图像我无法弄明白。
这是我目前的代码:
Bitmap image = new Bitmap(form.Width, form.Height);
form.DrawToBitmap(image, new Rectangle(new Point(0, 0), image.Size));
return image;