JavaFX之TableView的SelectionMode
SelectionMode
table默认是只能选着一行的,如果想选着多行,设置SelectionMode,此时可以对选中的多个进行监听。
tableView.getSelectionModel()得到的是个抽象类SelectionModel,它有二个子类MultipleSelectionModel, SingleSelectionModel。
getSelectedIndex()
getSelectedItem()
selectedIndexProperty()
selectedItemProperty()
selectFirst()
selectLast()
clearSelection()
clearSelection(int index)
selectIndices(int index, int... indices)
selectRange(int start, int end)
select(int index)
select(T obj)
setSelectionMode(SelectionMode.MULTIPLE);
MultipleSelectionModel则提供多选功能,并且提供多选的一些方法。
selectAboveCell()
selectBelowCell()
selectLeftCell()
selectRightCell()
setCellSelectionEnabled(boolean value)
select(int row, TableColumn<S,?> column)
选择变换监听