Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
505 views
in Technique[技术] by (71.8m points)

java - How to change the caret color in JavaFX 2.0?

We want to migrate a project from Swing to JavaFX as the new UI technology. As a part of our corporate design, we were changing the caret color in Swing to a light green.

How can we alter the color(or maybe also other things about the appearance) of carets in JavaFX 2.0? I couldn't find any useful information about it. I saw that it was possible in earlier versions of JavaFX, so i guess there's a way in 2.0 too.

Kind regards,

David

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In the TextField caret has the same color as text. You can change them by:

    TextField tf = new TextField("Text");
    tf.setStyle("  -fx-text-fill: green");

or globally in css file.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...