作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 winforms 窗体上有一个 listview
控件。它填满了整个屏幕,但其中的项目多于屏幕无法显示的数量。
如何截取整个控件的屏幕截图,就好像我可以在屏幕上显示 listview
的全部内容一样?因此,如果整个 listview
需要 1000 x 4000 像素,那么我想要一个该大小的图像/位图。
我该怎么做?当我尝试 printscreen 时,它只返回屏幕上的内容,屏幕外的任何内容都显示为灰色。
最佳答案
窗体是控件,因此您应该能够将整个内容保存到位图中,例如:
var bm = new Bitmap(yourForm.Width, yourForm.Height);
yourForm.DrawToBitmap(bm, bm.Size);
bm.Save(@"c:\whatever.gif", ImageFormat.Gif);
DrawToBitmap
只绘制屏幕上的内容。如果要绘制列表的全部内容,则必须遍历列表以找到内容的大小,然后绘制每个项目。像这样的东西:
var f = yourControl.Font;
var lineHeight = f.GetHeight();
// Find size of canvas
var s = new SizeF();
using (var g = yourControl.CreateGraphics())
{
foreach (var item in yourListBox.Items)
{
s.Height += lineHeight ;
var itemWidth = g.MeasureString(item.Text, f).Width;
if (s.Width < itemWidth)
s.Width = itemWidth;
}
if (s.Width < yourControl.Width)
s.Width = yourControl.Width;
}
using( var canvas = new Bitmap(s) )
using( var g = Graphics.FromImage(canvas) )
{
var pt = new PointF();
foreach (var item in yourListBox.Items)
{
pt.Y += lineHeight ;
g.DrawString(item.Text, f, Brushes.Black, pt);
}
canvas.Save(wherever);
}
关于c# - 如何在 C# 中截取 Winforms 控件/窗体的屏幕截图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1493591/
我是一名优秀的程序员,十分优秀!