Java:如何在父窗口下打开新的jframe
我将如何在父框架下创建和打开一个新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
(J)框架没有父级。它确实有 GraphicsConfiguration,但我猜你不会问这个。
如果您想将焦点返回到打开窗口。这一行中的一些事情应该做:
(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:
在子/弹出 jframe 的构造函数中编写以下内容
Write following inside constructor of child/popup jframe