Skip to content
Snippets Groups Projects
HelloController.java 293 B
Newer Older
jan-schw's avatar
jan-schw committed
package com.example.tictactoe_game;

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!");
    }
}