使用fxml和SceneBuilder在JavaFX中设置全局CSS样式表

时间:2014-12-04 09:54:18

标签: java css javafx global javafx-8

如何设置全局CSS样式表? 我正在使用fxml和场景构建器。 我将它添加到项目中的资源目录和

<BorderPane fx:id="mainBorder" onDragDetected="#minimize" prefHeight="400.0" prefWidth="700.0" style="-fx-background-color: white;" stylesheets="../../../../../../resources/css/JTheme.css" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.s.c.desktop.template.RootLayoutController">

但它不起作用:(。

1 个答案:

答案 0 :(得分:1)

您的网址中缺少@

尝试将样式表替换为:

stylesheets="@../../../../../../resources/css/JTheme.css"