initial commit

This commit is contained in:
2025-06-04 19:54:35 +03:30
commit e7e7706694
15 changed files with 540 additions and 0 deletions
@@ -0,0 +1,14 @@
package org.to.telegramfinalproject;
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!");
}
}