mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 19:58:23 +07:00
14 lines
286 B
Plaintext
14 lines
286 B
Plaintext
package ${context.rootPackage}
|
|
|
|
import javafx.fxml.FXML
|
|
import javafx.scene.control.Label
|
|
|
|
class HelloController {
|
|
@FXML
|
|
private lateinit var welcomeText: Label
|
|
|
|
@FXML
|
|
private fun onHelloButtonClick() {
|
|
welcomeText.text = "Welcome to JavaFX Application!"
|
|
}
|
|
} |