coderslegacy javafx tutorial

Solutions on MaxInterview for coderslegacy javafx tutorial by the best coders in the world

showing results for - "coderslegacy javafx tutorial"
Eleonora
17 Sep 2017
1package application;
2 
3import javafx.application.Application;
4import javafx.stage.Stage;
5import javafx.scene.Scene;
6 
7public class Tutorial extends Application {
8 
9    public static void main(String args[]){          
10         launch(args);     
11    } 
12         
13    @Override    
14    public void start(Stage primaryStage) throws Exception { 
15         
16        StackPane layout = new StackPane();
17        Scene scene = new Scene(layout, 400, 300);                      
18     
19        primaryStage.setTitle("CodersLegacy");
20        primaryStage.setScene(scene);   
21        primaryStage.show();
22    }
23}
24
similar questions
queries leading to this page
coderslegacy javafx tutorial