This series focus on how to open new windows in JavaFX and basic ways to move data between them.
Playlist:
• JavaFX Window Handling
1/4 - Opening new windows in JavaFX
How to open up one or more new windows.
• 1/4 - Opening new windows in JavaFX
2/4 - Moving data to new windows in JavaFX
How to send data to a new window by using a dynamic FXMLLoader
• 2/4 - Moving data to new windows in JavaFX
3/4 - Moving data both ways between multiple windows in JavaFX
How to send data back to the controller opening a new window through sharing an instance of itself
• 3/4 - Moving data both ways between multip...
4/4 - Closing Windows in JavaFX
How to close a window with a button click, using the Node tree in JavaFX.
• 4/4 - Closing Windows in JavaFX
These examples follow View-Controller based data moving, however using Model-View-Controller is a better approach, where data is shared through a model class and using JavaFX observables. However this will be shown in later and more advanced videos.