JavaFX Text create

Description

JavaFX Text create

import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.layout.FlowPane;
import javafx.scene.text.Text;
import javafx.stage.Stage;

public class Main extends Application {
  @Override/* ww  w  . j a v  a  2s  . com*/
  public void start(Stage primaryStage) {
    FlowPane pane = new FlowPane();
    pane.setAlignment(Pos.CENTER);
    // Crate a Text and set its properties
    Text text = new Text("Java");

    pane.getChildren().add(text);
    Scene scene = new Scene(pane, 150, 150);
    primaryStage.setTitle("java2s.com");
    primaryStage.setScene(scene);
    primaryStage.show();
  }

  public static void main(String[] args) {
    Application.launch(args);
  }
}



PreviousNext

Related