For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
private Scene s1,s2; private Stage stage; public void start(Stage stage) { this.stage = stage; s1 = new Scene(panel1); //Contains the first window element s2 = new Scene(panel2) //Contains the second window elements stage.setScene(s1); } //Anywhere in the code after certain condition matches in existing class this.stage.setScene(s2); //this code changes the scene of your main program Stage/Window
HI
Can u please send me the implementaion details of MDI using swing in javafx.
It will be helpful for me.