当小程序不可见时隐藏 JWindow?

发布于 2024-12-04 15:43:48 字数 142 浏览 4 评论 0原文

我在小程序中创建一个 JWindow 来显示更新过程,并将所有者设置为小程序父级。我的问题是 JWindow 在我的浏览器的所有选项卡中都可见,而不仅仅是包含我的小程序的选项卡。是否可以添加一个侦听器来了解我的小程序何时可见? (然后在 JWindow 不存在时隐藏它)

I create a JWindow in my applet to display an update process, and I set the owner to the applet parent. My problem is that the JWindow is visible in all the tabs in my browser and not just the one containing my applet. Is it possible to add a Listener to know when my applet is visible? (And then hide the JWindow when it's not)

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

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

发布评论

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

评论(2

平生欢 2024-12-11 15:43:48

小程序在显示时似乎被添加到系统框架中,因此您可以使用 WindowListener。我在 JApplet 的 init() 方法中添加了以下代码:

Window window = SwingUtilities.windowForComponent(this);
window.addWindowListener( new WindowAdapter()
{
    @Override
    public void windowActivated(WindowEvent e)
    {
        displayWindow.setVisible( true );
    }

    @Override
    public void windowDeactivated(WindowEvent e)
    {
        displayWindow.setVisible( false );
    }
});

Applets appear to be added to a system Frame when they are displayed so you can use a WindowListener. I added the following code in the init() method of the JApplet:

Window window = SwingUtilities.windowForComponent(this);
window.addWindowListener( new WindowAdapter()
{
    @Override
    public void windowActivated(WindowEvent e)
    {
        displayWindow.setVisible( true );
    }

    @Override
    public void windowDeactivated(WindowEvent e)
    {
        displayWindow.setVisible( false );
    }
});
魔法少女 2024-12-11 15:43:48

我不太玩小程序,但我认为这就是 start()stop() 方法的用途。您可以在 start() 中使窗口可见,并在 stop() 中隐藏窗口。

I don't play much with applets but I think thats what the start() and stop() methods are for. You would make the window visible in start() and hide the window in stop().

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