Java:如何在父窗口下打开新的jframe

发布于 2024-11-01 18:56:16 字数 77 浏览 1 评论 0原文

我将如何在父框架下创建和打开一个新的 jframe 。我试图实现新窗口(未装饰)似乎从父窗口后面滑出的效果。现在它在焦点中打开,失去了效果。

How would i go about creating and opening a new jframe UNDER the parent frame. Im trying to achieve an effect where the new window (undecorated) appears to slide out from behind the parent window. Right now it opens in focus, losing the effect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

殊姿 2024-11-08 18:56:16

(J)框架没有父级。它确实有 GraphicsConfiguration,但我猜你不会问这个。
如果您想将焦点返回到打开窗口。这一行中的一些事情应该做:

 final JFrame parent = ...
 JFrame f=new JFrame();
 f.addWindowListener(new WindowAdapter(){
     @Override
     public void windowActivated(WindowEvent e) {
         e.getWindow().removeWindowListener(this);//do not listen any more, we do
         EventQueue.invokeLater(new Runnable(){//wait for the pending events
                     @Override
                     public void run() {
                         parent.toFront();
                     }                          
                 });
             }
         });

(J)Frame has no parent. It does have GraphicsConfiguration though but I guess you aint asking that.
If you want to get back the focus to the opener window. Something in this line shall do:

 final JFrame parent = ...
 JFrame f=new JFrame();
 f.addWindowListener(new WindowAdapter(){
     @Override
     public void windowActivated(WindowEvent e) {
         e.getWindow().removeWindowListener(this);//do not listen any more, we do
         EventQueue.invokeLater(new Runnable(){//wait for the pending events
                     @Override
                     public void run() {
                         parent.toFront();
                     }                          
                 });
             }
         });
谜兔 2024-11-08 18:56:16

在子/弹出 jframe 的构造函数中编写以下内容

setModal(true);

Write following inside constructor of child/popup jframe

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