自定义 ControlsFX 通知的背景

Posted

技术标签:

【中文标题】自定义 ControlsFX 通知的背景【英文标题】:customize the background of ControlsFX Notification 【发布时间】:2018-01-10 15:42:11 【问题描述】:

如何在 java 或 css 中将白色背景更改为绿色背景?

Notification 类没有getStylesheet() 方法。

enter image description here

【问题讨论】:

【参考方案1】:

您可能需要考虑使用 JavaFX Alert 而不是 ControlsFX 通知。 Alert 有一个实现Styleable 接口的DialogPane,并有一个getStylesheets 方法。

所以要使用它,你会有类似的东西

Alert myAlert = new Alert(AlertType.NONE);
myAlert.getDialogPane().getStylesheets().add("myStylesheet.css");

【讨论】:

当然,我在这里创建了一个聊天室:chat.***.com/rooms/162919/…

以上是关于自定义 ControlsFX 通知的背景的主要内容,如果未能解决你的问题,请参考以下文章

自定义android通知背景

RangeSlider 的 JavaFX ControlsFX CSS

无法对推送通知自定义按钮执行操作

通知 API - 自定义选项?

Android 自定义Notification颜色适配问题

Android 自定义Notification颜色适配问题