标签: javafx
如何在java或css中将白色背景更改为绿色背景?
Notification类没有getStylesheet()方法。
getStylesheet()
enter image description here
答案 0 :(得分:0)
您可能需要考虑使用JavaFX Alert而不是ControlsFX通知。 Alert有一个DialogPane,用于实现Styleable界面,并且采用getStylesheets方法。
Alert
DialogPane
Styleable
getStylesheets
所以要使用它你会有像
Alert myAlert = new Alert(AlertType.NONE); myAlert.getDialogPane().getStylesheets().add("myStylesheet.css");