java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > JavaFX Metro UI 和 开发库

JavaFX Metro UI 和 开发库使用简介

作者:C.J

这篇文章主要介绍了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 开发的界面:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文