Skip to content

Instantly share code, notes, and snippets.

@naokirin
Created February 4, 2012 18:39
Show Gist options
  • Save naokirin/1739391 to your computer and use it in GitHub Desktop.
Save naokirin/1739391 to your computer and use it in GitHub Desktop.
JavaFXMemo01
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
import javafx.scene.layout.VBox;
import javafx.scene.control.TextArea;
import javafx.scene.control.Button;
import javafx.scene.layout.HBox;
public class JavaFXMemo extends Application {
public static void main(String[] args){
Application.launch(JavaFXMemo, args);
}
@Override
public void start(Stage stage) {
// シーングラフとルートオブジェクトの生成
VBox vbox = new VBox();
Scene scene = new Scene(vbox);
// テキストエリア、テキストフィールド、ボタンの設定
TextArea textArea = new TextArea();
TextField commandField = new TextField();
Button commandButton = new Button("Command");
HBox commandArea = new HBox();
commandArea.getChildren().addAll(commandField, commandButton);
vbox.getChildren().addAll(textArea, commandArea);
// Stageの設定
stage.setScene(scene);
stage.setTitle("JavaFXMemo");
stage.setWidth(1024); stage.setHeight(700);
stage.show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment