从JavaFX输入字段中删除蓝框

时间:2014-04-29 20:05:25

标签: javafx javafx-2 javafx-8

有没有办法从输入字段中删除蓝框?

enter image description here

1 个答案:

答案 0 :(得分:9)

您正在显示的蓝色边框是焦点边框。

要完全删除它,请使用

之类的内容
textField.setStyle("-fx-focus-color: -fx-control-inner-background ; -fx-faint-focus-color: -fx-control-inner-background ;");

或在外部css文件中

.text-field {
        -fx-focus-color: -fx-control-inner-background ;
    -fx-faint-focus-color: -fx-control-inner-background ;
}

要使其与未聚焦的文本字段相同,请使用

.text-field:focused {
    -fx-background-color: linear-gradient(to bottom, derive(-fx-text-box-border, -10%), -fx-text-box-border),
        linear-gradient(from 0px 0px to 0px 5px, derive(-fx-control-inner-background, -9%), -fx-control-inner-background);
}