Java: JavaFX桌面GUI开发

简介: Java: JavaFX桌面GUI开发

1、基本概念

窗口          Stage
  -场景       Scene
    -布局     stackPane
      -控件   Button

2、最小框架代码

创建命令行应用

package com.company;


import javafx.application.Application;
import javafx.stage.Stage;


public class HelloWorld extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.show();
}

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

对就是啥都没有,空白的窗体

d22.3.png


3、控件布局

package com.company;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;


public class Main extends Application {

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

@Override
public void start(Stage primaryStage) throws Exception {
// 实例化按钮
Button button = new Button("这是按钮上的文字");

// 创建布局控件
StackPane stackPane = new StackPane();

// 将button添加到布局
stackPane.getChildren().add(button);

// 创建场景 宽=400 高=400
Scene scene = new Scene(stackPane, 400, 400);

// 将场景添加到窗口
primaryStage.setScene(scene);

// 显示窗口
primaryStage.show();
}
}

d22.4.png


4、事件添加

Main.java


package com.company;

import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;


public class Main extends Application implements EventHandler<MouseEvent> {
private Button button;

public static void main(String[] args) {
// write your code here
// System.out.println("你好");
launch(args);
}

@Override
public void start(Stage primaryStage) throws Exception {
// 实例化按钮
button = new Button("这是按钮");

// 1、添加按钮点击事件, this.handle 处理事件
// button.setOnMouseClicked(this);

// 2、使用单独实现的类 事件监听
// button.setOnMouseClicked(new MyMouseEvent());

// 3、使用匿名类添加事件监听
button.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent event) {
System.out.println("鼠标点击按钮了");
}
});

// 4、jdk 8 使用简写执行一条输出
button.setOnMouseClicked(e -> System.out.println("简写的监听事件"));

// 5、同时输出多条
button.setOnMouseClicked(e -> {
System.out.println("简写的监听事件1");
System.out.println("简写的监听事件2");
});

// 创建布局控件
StackPane stackPane = new StackPane();

// 将button添加到布局
stackPane.getChildren().add(button);

// 创建场景
Scene scene = new Scene(stackPane, 400, 400);

// 给场景添加事件处理的对象
// scene.setOnMousePressed(this);
scene.setOnMousePressed(new MySceneMouseEvent());

// 将场景添加到窗口
primaryStage.setScene(scene);

// 显示窗口
primaryStage.show();
}

@Override
public void handle(MouseEvent event) {

// event.getSource() 获取事件对象
if (event.getSource() == button) {
System.out.println("点击了按钮");
} else {
System.out.println("点击了场景");
}
}
}

MyMouseEvent.java 处理鼠标点击事件的类

package com.company;

import javafx.event.EventHandler;
import javafx.scene.input.MouseEvent;

public class MyMouseEvent implements EventHandler<MouseEvent> {
@Override
public void handle(MouseEvent event) {
System.out.println("MyMouseEvent click");
}
}

MySceneMouseEvent.java 处理场景点击事件的类

package com.company;

import javafx.event.EventHandler;
import javafx.scene.input.MouseEvent;

public class MySceneMouseEvent implements EventHandler<MouseEvent> {
@Override
public void handle(MouseEvent event) {
System.out.println("场景鼠标点击");
}
}

5、场景切换

package com.company;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;


public class SceneChange extends Application {
Scene scene1, scene2;

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

@Override
public void start(Stage primaryStage) throws Exception {
// 场景1
Button button1 = new Button("场景1 的button");

// 事件监听 点击后切换到场景2
button1.setOnMouseClicked(e -> {
primaryStage.setScene(scene2);
});

VBox vBox = new VBox();
vBox.getChildren().add(button1);
scene1 = new Scene(vBox, 400, 400);

// 场景2
Button button2 = new Button("场景2 的button");

// 事件监听 点击后切换到场景1
button2.setOnMouseClicked(e -> {
primaryStage.setScene(scene1);
});

StackPane stackPane = new StackPane();
stackPane.getChildren().add(button2);
scene2 = new Scene(stackPane, 400, 400);

primaryStage.setScene(scene1);
primaryStage.show();
}
}

d22.5.png


d22.6.png


6、窗体切换

Main.java

package com.company;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;


public class Main extends Application {
private Stage stage;

@Override
public void start(Stage primaryStage) throws Exception {
stage = primaryStage;

// 窗口点击叉号关闭询问
stage.setOnCloseRequest(event -> {
event.consume(); // 消除默认事件
handleClose();
});

// 布局
Button button = new Button("关闭窗口");

// 鼠标点击关闭窗口
button.setOnMouseClicked(event -> handleClose());

VBox vBox = new VBox();
vBox.getChildren().add(button);
Scene scene = new Scene(vBox, 400, 400);

stage.setScene(scene);
stage.show();
}

public void handleClose() {
// 接收窗体返回值
boolean ret = WindowAlert.display("关闭窗口", "是否关闭窗口?");
System.out.println(ret);
if (ret) {
stage.close();
}

}

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

WindowAlert.java

package com.company;

import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;


public class WindowAlert {
public static boolean answer;

/**
* @param title 标题
* @param msg 消息
*/
public static boolean display(String title, String msg) {
// 创建舞台
Stage stage = new Stage();

// 设置显示模式
stage.initModality(Modality.APPLICATION_MODAL);
stage.setTitle(title);

// 创建控件
Button buttonYes = new Button("是");
buttonYes.setOnMouseClicked(event -> {
answer = true;
stage.close();
});

Button buttonNo = new Button("否");
buttonNo.setOnMouseClicked(event -> {
answer = false;
stage.close();
});

Label label = new Label(msg);

// 创建布局
VBox vBox = new VBox();
vBox.getChildren().addAll(label, buttonYes, buttonNo);
vBox.setAlignment(Pos.CENTER); // 布局居中显示

// 创建场景
Scene scene = new Scene(vBox, 200, 200);

// 显示舞台
stage.setScene(scene);
// stage.show();
stage.showAndWait(); // 等待窗体关闭才继续

// 窗体返回值
return answer;
}
}

d22.7.png

            </div>
目录
相关文章
|
关系型数据库 MySQL Linux
[玩转Linux] 安装部署Frp
[玩转Linux] 安装部署Frp
823 0
[玩转Linux] 安装部署Frp
【NI Multisim 14.0原理图文件管理——打开文件】
1.打开文件 (1)选择菜单栏中的“文件”→“打开”命令或单击“标准”工具栏中的“打开”按钮,或按快捷键〈Ctrl〉+〈O〉,弹出“文件打开”对话框,在设计文件保存路径下打开已存在的设计文件,如图所示。 (2)在“文件名”后面的下拉列表中显示所支持的文件类型,如图所示,在 Multisim 14.0 中可以打开这些类型的所有文件夹。 2.打开样本文件 (1))选择菜单栏中的“文件”→“打开”命令或单击“标准”工具栏中的“打开”按钮,弹出“打开文件”对话框,在默认路径 Sample 文件夹下打开系统自带的样例设计文件,如图所示。 (2)“打开”命令与“打开样本”命令的实质区别在于,默认打开的文
1196 0
【NI Multisim 14.0原理图文件管理——打开文件】
|
消息中间件 缓存 运维
10张图带你彻底搞懂限流、熔断、服务降级
10张图带你彻底搞懂限流、熔断、服务降级
1784 0
10张图带你彻底搞懂限流、熔断、服务降级
|
数据采集 机器学习/深度学习 人工智能
透视鹏程.盘古:首个2000亿参数中文大模型是怎样炼成的?
给足算力和数据,就能训练出千亿参数的大模型?事实没有那么简单。
623 0
透视鹏程.盘古:首个2000亿参数中文大模型是怎样炼成的?
|
存储 运维 监控
从日志审计角度解读网络数据时代新安全
本文主要从日志审计的角度解读《网络安全法》、《数据安全法》、《等保2.0》等,介绍新数字经济时代,企业用户应如何加强网络安全管理和数据安全治理,全方位地守护企业云上资产及数据安全。
|
存储 SQL 机器学习/深度学习
MITRE ATT&CK 框架“入坑”指南
MITRE ATT&CK 框架是打造检测与响应项目的流行框架。这玩意有没有用不确定,但是你绝对承担不起不会用的风险。
MITRE ATT&CK 框架“入坑”指南
|
SQL 弹性计算 Ubuntu
阿里云服务器操作系统如何选择?哪个操作系统好用?
阿里云服务器操作系统如何选择?哪个操作系统好用: