You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
446 B
24 lines
446 B
|
|
import javafx.application.Application;
|
|
import javafx.fxml.FXMLLoader;
|
|
import javafx.scene.Parent;
|
|
import javafx.scene.Scene;
|
|
import javafx.stage.Stage;
|
|
|
|
|
|
public class Main extends Application {
|
|
|
|
@Override
|
|
public void start(Stage stage) throws Exception {
|
|
Parent root= FXMLLoader.load(getClass().getResource("Fenetre.fxml"));
|
|
Scene scene= new Scene(root);
|
|
stage.setScene(scene);
|
|
stage.show();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|