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);
これにより、newWindow が非表示になります。ただし、JFrame (メイン ウィンドウ) を別の場所でインスタンス化した場合は、そのインスタンスを新しい JFrame に渡して呼び出すことができるようにする必要があります.setVisible。
.setVisible