JavaFX Metro UI 和 开发库

Metro UI For JavaFX!

这是一个Windows设计风格的UI库,使用非常简单,只要一行代码就可以实现整体UI风格的替换!

new JMetro(JMetro.Style.LIGHT).applyTheme(scene);

例子

Switch

Button

 

案例:

可以看到,非常的美观!

作者博客 : 
https://pixelduke.com/java-javafx-theme-jmetro

可以在他的博客中查看 Jmetro 项目的说明和使用方式。

ConsrolsFX

这是一个JavaFX控件扩展库,界面风格与JavaFX原生一致,在JavaFX的基础上增加了许多实用的控件。

功能十分强大,可配置程度很高。

Github : 
https://github.com/controlsfx/controlsfx

 

Notification 的使用

   private void notification(String title, String content, String type) {
        Notifications notificationBuilder = Notifications.create()
                .title(title)
                .text(content)
                .position(Pos.BASELINE_RIGHT)
                .onAction(e -> System.out.println("Notification clicked on!"));
        Platform.runLater(() -> {
            switch (type) {
                case "error":
                    notificationBuilder.showError();
                    break;
                case "info":
                    notificationBuilder.showInformation();
                    break;
            }
        });
    }

使用:

 notification("信息", "开始扫描", "info");

效果:

 

用 JMetro 开发的界面:

posted @ 2019-08-06 23:07  杨超杰  阅读(5120)  评论(0编辑  收藏  举报