每一种语言,让我们最好入门的方式自然是“Hello World”。 在第一节中,我们将会学习,在JavaFX中创建Hello World程序。 代码如下: package helloworld; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.control.B…