当小程序不可见时隐藏 JWindow?
我在小程序中创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
小程序在显示时似乎被添加到系统框架中,因此您可以使用 WindowListener。我在 JApplet 的 init() 方法中添加了以下代码:
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:
我不太玩小程序,但我认为这就是
start()
和stop()
方法的用途。您可以在 start() 中使窗口可见,并在 stop() 中隐藏窗口。I don't play much with applets but I think thats what the
start()
andstop()
methods are for. You would make the window visible in start() and hide the window in stop().