Sun公司已于2008年12月05日发布了JavaFX技术的正式版,它使您能利用 JavaFX 编程语言开发互联网应用程序(RIA)。该产品于2007年5月在JavaOne大会上首次对外公布。JavaFX技术主要应用于创建Rich Internet applications(RIAs)。当前的JavaFX包括JavaFX脚本和JavaFX Mobile(一种运营于行动装置的操作系统),今后JavaFX将包括更多的产品。JavaFX Script编程语言(以下称为JavaFX)是一种declarative,statically typed(声明性的、静态类型)脚本语言。
水平布局
【JavaFx介绍】package com.soft1841.javafx.layout;
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
import java.io.FileInputStream;
/**
- 水平布局demo
*/
public class HBoxDemo extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.setTitle("HBox 布局练习");
HBox hBox = new HBox();
hBox.setSpacing(20);
hBox.setPadding(new Insets(50, 50, 50, 50));
hBox.setStyle("-fx-background-color: #D886BE");
for (int i = 1; i <= 5; i++) {
Button button = new Button("按钮" + i);
button.setMinSize(80, 30);
button.setStyle("-fx-background-color: #BA3F93; -fx-text-fill: #FFFFFF; -fx-font-size: 14px; ");
hBox.getChildren().add(button);
}
Label label = new Label("陶然然");
label.setStyle("-fx-font-size: 16px; -fx-text-fill: #6C2756");
FileInputStream input = new FileInputStream("resources/img/me.jpg");
Image image = new Image(input);
ImageView imageView = new ImageView(image);
hBox.getChildren().add(label);
hBox.getChildren().add(imageView);
Scene scene = new Scene(hBox, 900, 400);
primaryStage.setScene(scene);
primaryStage.show();
public static void main(String[] args) {
Application.launch(args);
}
}
-垂直布局
文章图片
image.png