以某部分隐藏窗口的截图以编程的方式

以某部分隐藏窗口的截图以编程的方式

本文介绍了以某部分隐藏窗口的截图以编程的方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有可能得到一个窗口,是不是顶部,即如果一部分被另一个窗口的截图,没有把它顶端?

Is it possible to get a screenshot of a window that is not on the top, i.e. if it is partially hidden by another window, without bringing it to the top?

推荐答案

您不需要采取截图,如果你的应用程序,你可以使用 Control.DrawToBitmap(位图位图,矩形targetBounds); 。

You dont need to take screenshot, if it is your application you can use Control.DrawToBitmap(Bitmap bitmap, Rectangle targetBounds); of the form object.

如果是其他应用程序窗口,你可以尝试取消管理的方式来获得窗口的UI。我不记得所有的方法,但我已尽力,这是工作。也许 GetWindow SendMesage WM_PRINT / WM_PRINTCLIENT

If it is other application window, you can try un-managed way to get the UI of window. I dont remember all the methods but I have tried and it was working. Probably GetWindow and SendMesage with WM_PRINT / WM_PRINTCLIENT

这篇关于以某部分隐藏窗口的截图以编程的方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 13:18