这是我的代码:
public class JavaFxTest7 extends Application {
private static class Student {
private int id;
private int mark;
public Student(int id, int mark) {
this.id = id;
this.mark = mark;
}
public int getId() {
return id;
}
public int getMark() {
return mark;
}
}
private TableView<Student> table = new TableView<>(FXCollections.observableList(
List.of(new Student(1, 3), new Student(2, 4), new Student(3, 5))));
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
var idColumn = new TableColumn<Student, Integer>();
idColumn.setCellValueFactory((data) -> new ReadOnlyObjectWrapper<>(data.getValue().getId()));
var markColumn = new TableColumn<Student, Integer>();
markColumn.setCellValueFactory((data) -> new ReadOnlyObjectWrapper<>(data.getValue().getMark()));
table.getColumns().addAll(idColumn, markColumn);
VBox root = new VBox(new TextField(), table);
var scene = new Scene(root, 400, 300);
var css= this.getClass().getResource("test7.css").toExternalForm();
scene.getStylesheets().addAll(css);
primaryStage.setScene(scene);
primaryStage.show();
}
}
我需要将黄色设置为选定但不聚焦的表格行的背景颜色。绿色作为聚焦表行的背景颜色。我试过 :
.table-row-cell:selected:focused {
-fx-background-color: green;
-fx-background-insets: 0;
}
.table-row-cell:selected {
-fx-background-color: yellow;
-fx-background-insets: 0;
}
但它给出了这个结果:
和这段代码:
.table-row-cell:focused {
-fx-background-color: green;
-fx-background-insets: 0;
}
.table-row-cell:selected {
-fx-background-color: yellow;
-fx-background-insets: 0;
}
给出了这个结果:
有人能说一下该怎么做吗?
所选表格行和单元格的 CSS 规则相当复杂。在默认样式表中它们的定义如下:
简而言之,
fx-background-color
行设置为查找的颜色(带有由嵌套背景实现的边框)。-fx-background
对于-fx-background-color
行中未选定的单个单元格, 发送到null
, (透明),以便您看到该行的背景;对于选定的单个单元格,则设置为-fx-background
。当选择行并获得焦点时,行和单个单元格的查找颜色
-fx-background
将设置为另一种名为 的查找颜色,当选择行但未获得焦点时,行和单元格的查找颜色再次设置为。-fx-selection-bar
-fx-background
-fx-selection-bar-non-focused
我无法完全解释您观察到的确切行为,但实现您想要的最简单的方法是设置用于选择的查找颜色: