答案 0 :(得分:1)
您看到的蓝色边框是RadioButton
被关注的结果。
您可以通过将RadioButton
设置为focusTraversable
来阻止false
自动获得焦点:
.radio-button {
-fx-focus-traversable: false;
}
要修改颜色,您可以指定-fx-focus-color
和-fx-faint-focus-color
属性:
.radio-button {
-fx-focus-color: red;
/* 2/15 th of the opacity of the focus color */
-fx-faint-focus-color: ladder(#222, transparent 0%, -fx-focus-color 100%);
}
答案 1 :(得分:0)