我使用互操作C#创建虚拟桌面。然后我在其中启动了一些程序。
现在,我需要不时制作此桌面的屏幕截图并将其显示在表单上。它适用于当前活动桌面,但不适用于创建的桌面。
Bitmap screen = new Bitmap(Screen.PrimaryScreen.Bounds.Width,
Screen.PrimaryScreen.Bounds.Height, PixelFormat.Format32bppArgb);
Graphics ss = Graphics.FromImage(screen);
ss.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0,
Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy);
我如何实现这一目标?我是否会使用.NET函数或WinAPI并不重要。
答案 0 :(得分:0)
如果桌面未处于活动状态,则无法截屏桌面。 我所知道的唯一一件事就是屏幕截图,不知何故,窗口的位置是桌面截图。