当前位置: 首页 > news >正文

JavaFX BorderPane布局

BorderPane布局顶部,底部,左,右或中心区域中的子节点。每个区域只能有一个节点。BorderPane的顶部和底部区域允许可调整大小的节点占用所有可用宽度。
左边界区域和右边界区域占据顶部和底部边界之间的可用垂直空间。

默认情况下,所有边界区域尊重子节点的首选宽度和高度。放置在顶部,底部,左侧,右侧和中心区域中的节点的默认对齐方式如下:

  • 顶部: Pos.TOP_LEFT
  • 底部: Pos.BOTTOM_LEFT
  • 左侧: Pos.TOP_LEFT
  • 右侧: Pos.TOP_RIGHT
  • 中心: Pos.CENTER

示例1

将按钮添加到BorderPane,如下代码所示

import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;public class Main extends Application {public static void main(String[] args) {Application.launch(args);}@Overridepublic void start(Stage primaryStage) {primaryStage.setTitle("BorderPane Test");BorderPane bp = new BorderPane();//bp.setPadding(new Insets(10, 20, 10, 20));Button btnTop = new Button("Top");bp.setTop(btnTop);Button btnLeft = new Button("Left");bp.setLeft(btnLeft);Button btnCenter = new Button("Center");bp.setCenter(btnCenter);Button btnRight = new Button("Right");bp.setRight(btnRight);Button btnBottom = new Button("Bottom");bp.setBottom(btnBottom);Scene scene = new Scene(bp, 300, 200);primaryStage.setScene(scene);primaryStage.show();}
}

示例2

package com.javafx03;import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.Background;
import javafx.scene.layout.BorderPane;
import javafx.scene.paint.Color;
import javafx.stage.Stage;public class JavaFx07 extends Application {@Overridepublic void start(Stage stage) {BorderPane borderPane = new BorderPane();borderPane.setBackground(Background.fill(Color.GRAY));borderPane.setTop(new Button("TOP"));borderPane.setLeft(new Button("LEFT"));borderPane.setRight(new Button("RIGHT"));borderPane.setCenter(new Button("Center"));borderPane.setBottom(new Button("Bottom"));Scene scene = new Scene(borderPane,300,300);stage.setScene(scene);stage.show();}public static void main(String[] args) {launch(args);}
}

复杂布局

package com.javafx03;import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Hyperlink;
import javafx.scene.layout.*;
import javafx.scene.paint.Color;
import javafx.scene.text.Font;
import javafx.scene.text.FontWeight;
import javafx.scene.text.Text;
import javafx.stage.Stage;public class JavaFx08 extends Application {@Overridepublic void start(Stage stage) {BorderPane borderPane = new BorderPane();borderPane.setBackground(Background.fill(Color.GRAY));HBox top = new HBox();top.setBackground(Background.fill(Color.BLUE));top.setMinHeight(60);Text text = new Text("Welcome 进销存");text.setFont(Font.font("宋体", FontWeight.BOLD,20));top.setAlignment(Pos.CENTER);top.getChildren().add(text);borderPane.setTop(top);VBox left = new VBox(10);left.setPadding(new Insets(10));left.setBackground(Background.fill(Color.PINK));left.setMinWidth(100);Button system = new Button("系统设置");left.getChildren().addAll(system,new Button("商品管理"),new Button("关于我们"),new Button("联系我们"));borderPane.setLeft(left);GridPane gridPane = new GridPane();gridPane.setBackground(Background.fill(Color.RED));gridPane.setMinWidth(400);gridPane.setMinHeight(240);borderPane.setCenter(gridPane);//borderPane.setRight(new Button("RIGHT"));system.setOnAction(e->{gridPane.setBackground(Background.fill(Color.BLACK));});HBox buttom = new HBox(10);buttom.setPadding(new Insets(10));buttom.setAlignment(Pos.CENTER);buttom.getChildren().addAll(new Button("系统设置"),new Button("商品管理"),new Button("关于我们"),new Button("联系我们"));borderPane.setBottom(buttom);Scene scene = new Scene(borderPane,600,400);stage.setScene(scene);stage.show();}public static void main(String[] args) {launch(args);}
}

此处为语雀视频卡片,点击链接查看:Video_2022-04-27_004131.wmv

菜单导航

使用场景绑定BorderPane宽度和高度

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Menu;
import javafx.scene.control.MenuBar;
import javafx.scene.control.MenuItem;
import javafx.scene.layout.BorderPane;
import javafx.scene.paint.Color;
import javafx.stage.Stage;public class Main extends Application {public static void main(String[] args) {Application.launch(args);}@Overridepublic void start(Stage primaryStage) {primaryStage.setTitle("Title");Group root = new Group();Scene scene = new Scene(root, 400, 250, Color.WHITE);MenuBar menuBar = new MenuBar();EventHandler<ActionEvent> action = changeTabPlacement();Menu menu = new Menu("Direction");MenuItem left = new MenuItem("Left");left.setOnAction(action);menu.getItems().add(left);MenuItem right = new MenuItem("Right");right.setOnAction(action);menu.getItems().add(right);MenuItem top = new MenuItem("Top");top.setOnAction(action);menu.getItems().add(top);MenuItem bottom = new MenuItem("Bottom");bottom.setOnAction(action);menu.getItems().add(bottom);menuBar.getMenus().add(menu);BorderPane borderPane = new BorderPane();borderPane.prefHeightProperty().bind(scene.heightProperty());borderPane.prefWidthProperty().bind(scene.widthProperty());borderPane.setTop(menuBar);root.getChildren().add(borderPane);primaryStage.setScene(scene);primaryStage.show();}private EventHandler<ActionEvent> changeTabPlacement() {return new EventHandler<ActionEvent>() {public void handle(ActionEvent event) {MenuItem mItem = (MenuItem) event.getSource();String side = mItem.getText();if ("left".equalsIgnoreCase(side)) {System.out.println("left");} else if ("right".equalsIgnoreCase(side)) {System.out.println("right");} else if ("top".equalsIgnoreCase(side)) {System.out.println("top");} else if ("bottom".equalsIgnoreCase(side)) {System.out.println("bottom");}}};}
}

相关文章:

  • 贪心算法学习五
  • Webrtc支持FFMPEG硬解码之解码实现(三)
  • 实战项目: 负载均衡
  • PostgreSQL如何使修改的参数生效
  • Java线程池的抛弃策略
  • springboot-自定义properties文件
  • Android studio如何导入项目
  • NASA数据:南极海洋生物资源
  • [管理者与领导者-189] :[沟通技巧-1] - “第一”是如此的重要,如何提高沟通中的第一印象?
  • 网络熔断机制(Circuit Breaker)
  • 苹果新型基于home app的骚扰
  • vue和jQuery有什么区别
  • AI Agents 的五个级别
  • Apache网页优化
  • 【尚庭公寓SpringBoot + Vue 项目实战】公寓管理(十一)
  • angular2 简述
  • es6要点
  • export和import的用法总结
  • IDEA 插件开发入门教程
  • iOS | NSProxy
  • JavaScript创建对象的四种方式
  • java中的hashCode
  • JS进阶 - JS 、JS-Web-API与DOM、BOM
  • js数组之filter
  • Lsb图片隐写
  • SAP云平台运行环境Cloud Foundry和Neo的区别
  • Spring Cloud Alibaba迁移指南(一):一行代码从 Hystrix 迁移到 Sentinel
  • vue学习系列(二)vue-cli
  • 闭包--闭包作用之保存(一)
  • 记一次和乔布斯合作最难忘的经历
  • 深入 Nginx 之配置篇
  • 通信类
  • 小程序开发之路(一)
  • 没有任何编程基础可以直接学习python语言吗?学会后能够做什么? ...
  • ​ ​Redis(五)主从复制:主从模式介绍、配置、拓扑(一主一从结构、一主多从结构、树形主从结构)、原理(复制过程、​​​​​​​数据同步psync)、总结
  • ​TypeScript都不会用,也敢说会前端?
  • ###C语言程序设计-----C语言学习(3)#
  • (52)只出现一次的数字III
  • (c语言)strcpy函数用法
  • (Matalb时序预测)WOA-BP鲸鱼算法优化BP神经网络的多维时序回归预测
  • (PWM呼吸灯)合泰开发板HT66F2390-----点灯大师
  • (pytorch进阶之路)CLIP模型 实现图像多模态检索任务
  • (Redis使用系列) Springboot 实现Redis消息的订阅与分布 四
  • (附源码)springboot人体健康检测微信小程序 毕业设计 012142
  • (理论篇)httpmoudle和httphandler一览
  • (十) 初识 Docker file
  • ***微信公众号支付+微信H5支付+微信扫码支付+小程序支付+APP微信支付解决方案总结...
  • .bat批处理(三):变量声明、设置、拼接、截取
  • .Net7 环境安装配置
  • @CacheInvalidate(name = “xxx“, key = “#results.![a+b]“,multi = true)是什么意思
  • @RequestParam详解
  • [8-23]知识梳理:文件系统、Bash基础特性、目录管理、文件管理、文本查看编辑处理...
  • [flask]http请求//获取请求头信息+客户端信息
  • [iOS]iOS获取设备信息经常用法
  • [Java并发编程实战] 共享对象之可见性