在 Java GUI 中生成新进程时从视图中删除任务栏

发布于 2024-11-30 10:27:53 字数 216 浏览 0 评论 0原文

我的全屏应用程序覆盖了整个桌面(甚至任务栏)。但是,当我从应用程序本身启动新进程时,使用:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十年九夏 2024-12-07 10:27:53

我相信这是标准的 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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文