gpt4 book ai didi

JavaFX CSS 解析器错误预期的 COLON

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:55:27 24 4
gpt4 key购买 nike

所以我得到了一个错误,我不知道要修复什么,因为从我的 Angular 来看,一切都很好:

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]

感谢您的帮助。

和平

最佳答案

您正在尝试将 styleclass 设置为 Label title。当你想设置 styleclass 使用:

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

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

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

关于JavaFX CSS 解析器错误预期的 COLON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25847447/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com