简单地说,我有一个JavaFX Textfield,我希望1)更改文本颜色,2)将其更改回CSS中指定的颜色。有没有人知道如何(通常)从JavaFX代码中访问css颜色等?
AnyFxElement.setStyle(String elementCss);
对于所有css功能的来源,我建议查找caspian css。
要删除样式,请使用以下代码:
// remove the background color on the button
yourElement.setStyle(null);
要将其设置回默认样式:
// set the button style back to the default class
yourElement.setStyle(".yourStyle");