我正在开展虚拟教室项目,并使用Red5屏幕共享应用程序与用户共享我的桌面。 它正在共享我的整个桌面,但我不想共享一个特定的应用程序窗口,我在其中做了一些个人工作。
User32Extra.INSTANCE.ShowWindow(hWnd,0); // for hiding window
BufferedImage image = robot.createScreenCapture(new Rectangle(x, y, width, height)); User32Extra.INSTANCE.ShowWindow(hWnd,5); // for showing window
我使用winapi来隐藏特定窗口,但它没有给出正确的结果。