代码中的Javafx CSS值

问题描述 投票:0回答:2

简单地说,我有一个JavaFX Textfield,我希望1)更改文本颜色,2)将其更改回CSS中指定的颜色。有没有人知道如何(通常)从JavaFX代码中访问css颜色等?

javafx fxml
2个回答
0
投票
AnyFxElement.setStyle(String elementCss);

对于所有css功能的来源,我建议查找caspian css。


0
投票

要删除样式,请使用以下代码:

    // remove the background color on the button
    yourElement.setStyle(null);

要将其设置回默认样式:

    // set the button style back to the default class
    yourElement.setStyle(".yourStyle");
© www.soinside.com 2019 - 2024. All rights reserved.