mirror of
https://github.com/Akomry/makeyourownapp-jam.git
synced 2025-12-06 08:43:54 +00:00
initial commit
This commit is contained in:
commit
adc8658d6d
10 changed files with 704 additions and 0 deletions
|
|
@ -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!");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue