我有一张桌子,一列,n行。我需要在双击到tableview单元格时显示弹出窗口。每行都有自己的弹出窗口。
答案 0 :(得分:3)
yourCell.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent mouseEvent) {
if (mouseEvent.getButton().equals(MouseButton.PRIMARY)) {
if (mouseEvent.getClickCount() == 2) {
//codes to show your Popup window
}
}
}
});