我想在GridPane中进行拖放操作,拾取的元素将放在我们删除它的单元格中。但是我找不到一种方法来获取它应该被放到的单元格和行的行。
以下是setOnDragDropped中的内容:
ImageView ivPicked = new ImageView(e.getDragboard().getImage());//We get the ImageView from the Dragboard
int col = /*Put code to get the column here*/;
int row = /*Put code to get the row here*/;
grid.add(ivPicked,col,row);//Add it to the GridPane
e.consume();
有没有人有想法? 谢谢:D