没有CSS的情况下,如何在Java代码中选择TitledPane的标题?

我制作了TitledPane,并且想要使标题的字体粗体为粗体。

所以我尝试了这样。

TitledPane Rootpane = new TitledPane();
Rootpane.setText("Options");
Rootpane.setStyle("-fx-background-color: #eeeeee; -fx-text-fill: #1b75bc; -fx-font-weight: bold;");


标题变为粗体,但TitledPane中的其他按钮也变为粗体...

我只想使Title在没有CSS文件的情况下为粗体。

那么如何选择Java代码中的标题?

我尝试过这样

Rootpane.lookup(".titled-pane > .title").setStyle("-fx-font-weight: bold;");



但是结果是

Exception in thread "main" java.lang.NullPointerException

最佳答案

将节点添加到舞台之后和lookup()之后,应调用Stage.show()。例如这样:

@Override
public void start(Stage primaryStage) {
    TitledPane root = new TitledPane();
    root.setText("Options");
    primaryStage.setScene(new Scene(root, 200, 100));
    primaryStage.show();

    root.lookup(".titled-pane > .title > .text").setStyle("-fx-font-weight: bold;");
}


如您所见,您还应该使用.titled-pane > .title > .text获取实际的文本标签(docs)。

10-06 16:00