リビジョン 22a234c4
| learn/java/javafx/HelloJavaFx/src/com/torutk/hellofx/HelloJavaFx.java | ||
|---|---|---|
|
|
||
|
import javafx.application.Application;
|
||
|
import javafx.stage.Stage;
|
||
|
import javafx.scene.Group;
|
||
|
import javafx.scene.Scene;
|
||
|
import javafx.scene.control.Label;
|
||
|
|
||
|
public class HelloJavaFx extends Application {
|
||
|
|
||
|
@Override
|
||
|
public void start(Stage stage) {
|
||
|
Group root = new Group();
|
||
|
Label helloLabel = new Label("Hello, JavaFX world");
|
||
|
root.getChildren().add(helloLabel);
|
||
|
|
||
|
Scene scene = new Scene(root);
|
||
|
stage.setScene(scene);
|
||
|
stage.setTitle("HelloJavaFx");
|
||
|
stage.show();
|
||
|
}
|
||
#41 GroupとLabelでシーングラフ構築、メッセージを表示