initial commit

This commit is contained in:
Emi Boucly 2025-03-03 22:31:34 +01:00
commit adc8658d6d
10 changed files with 704 additions and 0 deletions

View file

@ -0,0 +1,14 @@
package fr.emiko.graphicalapp;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
public class HelloController {
@FXML
private Label welcomeText;
@FXML
protected void onHelloButtonClick() {
welcomeText.setText("Welcome to JavaFX Application!");
}
}