作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序中有controlsfx CheckListView。我正在显示我的自定义对象(例如:员工)。我已经创建了一个员工对象列表并将其包装在一个可观察的列表中。现在我将可观察列表设置为我的 CheckListView。
checkListView.setItems(employeesObservableList);
最佳答案
CheckListView
使用的列表单元格是标准 CheckBoxListCell
来自 javafx.scene.control.cell
.所以你可以覆盖 cellFactory
有类似的东西:
checkListView.setCellFactory(listView -> new CheckBoxListCell(checkListView::getItemBooleanProperty) {
@Override
public void updateItem(Employee employee, boolean empty) {
super.updateItem(employee, empty);
setText(employee == null ? "" : employee.getEno());
}
});
CheckBoxListCell<T>
有一个构造函数采用
Callback<T, BooleanProperty>
为显示项目的复选框指定 bool 属性;
CheckListView
定义一个方法
getItemBooleanProperty(T item)
它准确地返回这个值,所以它可以使用方法引用直接传递给这里的构造函数。
import org.controlsfx.control.CheckListView;
import javafx.application.Application;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ListChangeListener;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.control.cell.CheckBoxListCell;
import javafx.stage.Stage;
public class CheckListViewTest extends Application {
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Test");
CheckListView<Employee> checkListView = new CheckListView<Employee>();
ObservableList<Employee> oblist = FXCollections.observableArrayList();
for (int i = 1; i <= 40; i++) {
oblist.add(new Employee("Employee " + i, i));
}
checkListView.setItems(oblist);
checkListView.setCellFactory(lv -> new CheckBoxListCell<Employee>(checkListView::getItemBooleanProperty) {
@Override
public void updateItem(Employee employee, boolean empty) {
super.updateItem(employee, empty);
setText(employee == null ? "" : String.format("Employee number: %04d", employee.getEno()));
}
});
checkListView.getCheckModel().getCheckedIndices().addListener(new ListChangeListener<Integer>() {
@Override
public void onChanged(javafx.collections.ListChangeListener.Change<? extends Integer> c) {
while (c.next()) {
if (c.wasAdded()) {
for (int i : c.getAddedSubList()) {
System.out.println(checkListView.getItems().get(i).getName() + " selected");
}
}
if (c.wasRemoved()) {
for (int i : c.getRemoved()) {
System.out.println(checkListView.getItems().get(i).getName() + " deselected");
}
}
}
}
});
Scene scene = new Scene(checkListView);
primaryStage.setScene(scene);
primaryStage.show();
}
public static class Employee {
private final StringProperty name = new SimpleStringProperty();
private final IntegerProperty eno = new SimpleIntegerProperty();
public Employee(String name, int eno) {
setName(name) ;
setEno(eno);
}
public final StringProperty nameProperty() {
return this.name;
}
public final String getName() {
return this.nameProperty().get();
}
public final void setName(final String name) {
this.nameProperty().set(name);
}
public final IntegerProperty enoProperty() {
return this.eno;
}
public final int getEno() {
return this.enoProperty().get();
}
public final void setEno(final int eno) {
this.enoProperty().set(eno);
}
}
public static void main(String[] args) {
launch(args);
}
}
关于带有自定义对象的 javafx CheckListView 以显示特定属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41222727/
我的应用程序中有controlsfx CheckListView。我正在显示我的自定义对象(例如:员工)。我已经创建了一个员工对象列表并将其包装在一个可观察的列表中。现在我将可观察列表设置为我的 Ch
问题描述 我有一个包含多个项目(复选框)的 CheckListView。我更改了选择模式(下面的代码)以允许多项选择。但是,当我选择多行(如下图所示)并按空格键时,只有“当前选定行”会更改状态。 我想
我有一个 JavaFx 项目,并且正在使用控件 CheckListView 有没有办法对此进行编码,以便控件允许用户仅从checklistview中选择一个选项 最佳答案 你可以这样做: ch
我尝试使用 Controls FX和 Check List View组件,但我有几个关于如何使用它的问题: 默认情况下,当我在 CheckListView 中添加项目时,单元格未被选中,如何才能使其默
我是一名优秀的程序员,十分优秀!