Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 JavaFX 的新手。我想用不同的颜色制作标签的文本。
例如:
标签 : "sourav ganguly"
输出: sourav(红色) ganguly(蓝色)
我试过了,但我没有得到它。请任何人都可以帮助我。
或者您可以将 setStyle 用于 Label 并设置您需要的颜色。
label.setStyle("-fx-color: red");
看更多