JavaFX CSS Parser错误预期COLON

时间:2014-09-15 11:51:44

标签: java css javafx

所以我收到了一个错误,而且从我的观点来看,我不知道该怎么做才能解决问题:

CSS代码:

@font-face {
    font-family: 'Titillium';
    font-style: normal;
    font-weight: normal;
    src: url('Titillium.ttf');
}

.root{
    -fx-font-family: "Titillium";
}

.label{
    -fx-font-size: 14pt;
}

.title {
    -fx-font-size: 24pt;
}

.textfield{
    -fx-font-size: 15pt;
}

.list-cell{
    -fx-font-size: 15pt;
}

.combo-box{
    -fx-font-size: 12pt;
}

#detaillist .list-cell{
    -fx-background-color: transparent;
}

#subtitle{
    -fx-font-size: 10pt;
}

和我设置Sytle的Java代码:

title = new Label("Notiz vom " + Selector.getSelectedNotiz().getDatum().toLocaleString());
title.setTextFill(Color.BLACK);
//--------------- Right here ----------------------
title.setStyle("title");
cmbLernender = new ComboBox<String>();
k = new Label("Kompetenz");
k.setTextFill(Color.BLACK);

看起来很好......

现在如果我启动它会发生这种情况:

Sep 15, 2014 1:25:30 PM com.sun.javafx.css.parser.CSSParser declaration
WARNUNG: CSS Error parsing '*{title}: Expected COLON at [1,7]

感谢您的帮助。

和平

1 个答案:

答案 0 :(得分:9)

您正尝试将styleclass设置为Label 标题。如果要设置styleclass,请使用:

title.getStyleClass().add("title");

如果您想直接向控件添加样式,而不是从css / styleclass加载它们,您可以使用:

title.setStyle("-fx-background-color: slateblue; -fx-text-fill: white;");