javafx change application title

Solutions on MaxInterview for javafx change application title by the best coders in the world

showing results for - "javafx change application title"
Lucia
30 Feb 2020
1public void start(Stage stage) throws Exeption
2{
3	stage.setTitle("ExampleTitle"); //This sets the title of you window
4}