在 Java GUI 中生成新进程时从视图中删除任务栏
我的全屏应用程序覆盖了整个桌面(甚至任务栏)。但是,当我从应用程序本身启动新进程时,使用:
String command = "xterm";
Process p = Runtime.getRuntime().exec(command);
我在全屏应用程序顶部看到新应用程序(好),但我也看到任务栏(坏)。如果我没有正确解释自己,我可以提供屏幕截图。
My full screen application covers the entire desktop (even the taskbar). However, when I start a new process from the application itself, using:
String command = "xterm";
Process p = Runtime.getRuntime().exec(command);
I see the new application on top of my full screen app (good) but I also see the taskbar (bad). I can provide screenshots if I'm not explaining myself correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这是标准的 Windows 行为(当然假设您在 Windows 上运行该应用程序)。启动新进程时,默认情况下会获得焦点,这意味着您的全屏应用程序将失去焦点并出现任务栏(因为新进程不会抑制它)。
我不确定是否有办法绕过这种行为。
祝你好运!
I believe this is standard Windows behaviour (assuming that you're running the app on Windows of course). When starting a new process this gets focus by default, which means that your fullscreen app loses focus and the taskbar appears (because the new process doesn't suppress it).
I'm not sure if there's a way to bypass this behaviour though.
Good luck!