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.
|
package com.ybw.mathapp;
|
|
|
|
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!");
|
|
}
|
|
} |