Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的主框架已设置为隐藏使用setVisible(false).
setVisible(false)
现在,我正在尝试在另一个JFrame.
JFrame
我尝试了这些,但没有一个有效。
FunTripView newWindow = new FunTripView(); newWindow.show(); FunTripView.setVisible(true); FunTripView().run();
还有其他方法吗?
FunTripView newWindow = new FunTripView(); newWindow.setVisible(false);
FunTripView newWindow = new FunTripView();
newWindow.setVisible(false);
这将隐藏新窗口。但是,如果您在其他地方实例化了 JFrame(主窗口),则需要将该实例传递给新的 JFrame 以便能够调用.setVisible它。
.setVisible