我想用外部CSS文件设置javafx应用程序的样式,但是当我添加css文件时,它不会产生任何区别。我正在使用Netbeans 7.4 IDE和jdk8,尽管代码没有指出任何错误或异常,但我没有得到所需的输出。我完全困惑该怎么办。我的代码是...
package manualstyle;
import java.io.File;
import java.net.URL;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;
/**
*
* @author vickyjonnes
*/
public class ManualStyle extends Application {
@Override
public void start(Stage primaryStage) {
Group root=new Group();
Scene scene = new Scene(root, 300, 250);
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setLayoutX(100);
btn.setLayoutY(100);
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
root.getChildren().add(btn);
primaryStage.setScene(scene);
String css = ManualStyle.class.getResource("myStyle.css").toExternalForm();
scene.getStylesheets().add(css);
primaryStage.show();
}
/**
* The main() method is ignored in correctly deployed JavaFX application.
* main() serves only as fallback in case the application can not be
* launched through deployment artifacts, e.g., in IDEs with limited FX
* support. NetBeans ignores main().
*
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
我有一个驻留在同一目录中的css文件,css文件的内容是:
.root{
-fx-background-color: #ff0066;
}
最佳答案
请通过以下解决方案。让我知道,如果您仍然遇到问题:
https://stackoverflow.com/a/22048338/1759128
关于java - 如何使用外部CSS文件设置JavaFX应用程序的样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22066799/