我正在使用此方法获取全屏截图
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width,
Screen.PrimaryScreen.Bounds.Height,
PixelFormat.Format32bppArgb);
using (Graphics graphics = Graphics.FromImage(bitmap))
{
graphics.CopyFromScreen(Screen.PrimaryScreen.Bounds.X,
Screen.PrimaryScreen.Bounds.Y,
0, 0, Screen.PrimaryScreen.Bounds.Size,
CopyPixelOperation.SourceCopy);
}
现在我想做的是以某种方式改进这一点,我可以获得某个特定窗口的屏幕截图。
我只知道一些事情:
它不一定是活动窗口。
真的很感谢你的帮助。