我正在尝试在我的应用程序中使用Windows 7登录屏幕(或切换用户屏幕)的打印屏幕。
事实上,我不知道该怎么做。有人能帮我吗?您需要创建一个windows服务,以便它可以运行,即使用户没有登录,看看这篇文章,更多信息请阅读MSDN.
截图:
ScreenCapture sc = new ScreenCapture();
// capture entire screen, and save it to a file
Image img = sc.CaptureScreen();
// display image in a Picture control named imageDisplay
this.imageDisplay.Image = img;
// capture this window, and save it
sc.CaptureWindowToFile(this.Handle,"C:\temp2.gif",ImageFormat.Gif);
来源:http://www.developerfusion.com/code/4630/capture-a-screen-shot/