import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
/**
* BorderPane 布局类
*/
public class Demo15 extends Application {
@Override
public void start(Stage stage) throws Exception {
AnchorPane anchorPane1 = new AnchorPane();
anchorPane1.setPrefWidth(100);
anchorPane1.setPrefHeight(100);
anchorPane1.setStyle("-fx-background-color: #EE6AA7");
AnchorPane anchorPane2 = new AnchorPane();
anchorPane2.setPrefWidth(100);
anchorPane2.setPrefHeight(100);
anchorPane2.setStyle("-fx-background-color: #98FB98");
AnchorPane anchorPane3 = new AnchorPane();
anchorPane3.setPrefWidth(100);
anchorPane3.setPrefHeight(100);
anchorPane3.setStyle("-fx-background-color: #A0522D");
AnchorPane anchorPane4 = new AnchorPane();
anchorPane4.setPrefWidth(100);
anchorPane4.setPrefHeight(100);
anchorPane4.setStyle("-fx-background-color: #1E90FF");
AnchorPane anchorPane5 = new AnchorPane();
anchorPane5.setPrefWidth(100);
anchorPane5.setPrefHeight(100);
anchorPane5.setStyle("-fx-background-color: #EEEE00");
BorderPane borderPane = new BorderPane();
borderPane.setStyle("-fx-background-color: #B23AEE");
Button button = new Button("按钮");
// borderPane.setTop(button);
borderPane.setTop(anchorPane1);
// borderPane.setBottom(anchorPane2);
borderPane.setLeft(anchorPane3);
borderPane.setRight(anchorPane4);
borderPane.setCenter(anchorPane5);
// borderPane.setPadding(new Insets(10));
// BorderPane.setMargin(anchorPane1,new Insets(10));
BorderPane.setAlignment(anchorPane1, Pos.BOTTOM_CENTER);
Scene scene = new Scene(borderPane);
stage.setScene(scene);
stage.setTitle("javafx");
stage.setWidth(800);
stage.setHeight(800);
stage.show();
}
}
13.JavaFx BorderPane布局类
最新推荐文章于 2024-07-01 20:13:02 发布