- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在我的游戏中实现了拖放功能,但到目前为止我只能“拖放”到硬编码位置。如图所示:
我想要的是:
我的 setOnDragDropped 事件在这里处理:
//Drag dropped draws the image to the receiving node
target.setOnDragDropped(new EventHandler<DragEvent>() {
public void handle(DragEvent event) {
//Data dropped
//If there is an image on the dragboard, read it and use it
Dragboard db = event.getDragboard();
boolean success = false;
int x, y;
if(db.hasImage()){
//target.setText(db.getImage()); --- must be changed to target.add(source, col, row)
//target.add(source, 5, 5, 1, 1);
//Places at 0,0 - will need to take coordinates once that is implemented
Board.add(test, 0, 0, 1, 1);
success = true;
}
//let the source know whether the image was successfully transferred and used
event.setDropCompleted(success);
event.consume();
}
});
我觉得这应该很容易作为 MouseOver 事件或类似事件来完成,但我不确定该怎么做。
编辑:下面类的完整代码:
public class Controller implements Initializable{
@FXML
public GridPane Board;
public GridPane ShipsToBePlaced;
public Rectangle MessageBox;
public Button ReadyButton;
public Button QuitButton;
public ImageView[][] water;
public ImageView[] ships;
public ImageView[][] ships2d;
@Override
public void initialize(URL location, ResourceBundle resources) {
//Adds water to each cell in grid
water = new ImageView[10][10];
//ships2d = new ImageView[10][10];
for(int i =0; i<10; i++){
for(int j=0; j <10; j++){
water[i][j] = new ImageView("Tiles/watertile.png");
water[i][j].setPreserveRatio(true);
water[i][j].setFitHeight(49);
water[i][j].setFitWidth(49);
Board.add(water[i][j], i, j);
//ships2d[i][j] = new ImageView("Ships/ship2.png");
//ships2d[i][j].setPreserveRatio(true);
//ships2d[i][j].setFitWidth(49);
//Board.add(ships2d[i][j], i, j);
}
}
//Adds ships
ships = new ImageView[5];
ships[0] = new ImageView("Ships/ship2.png");
ships[1] = new ImageView("Ships/ship3.png");
ships[2] = new ImageView("Ships/ship3.png");
ships[3] = new ImageView("Ships/ship4.png");
ships[4] = new ImageView("Ships/ship5.png");
for(int i=0; i < 5; i++){
ships[i].setPreserveRatio(true);
}
ships[0].setFitWidth(80);
ships[1].setFitWidth(120);
ships[2].setFitWidth(120);
ships[3].setFitWidth(160);
ships[4].setFitWidth(200);
//ShipsToBePlaced.add(ships[0], 0, 0);
ShipsToBePlaced.add(ships[1], 0, 1);
ShipsToBePlaced.add(ships[2], 0, 2);
ShipsToBePlaced.add(ships[3], 0, 3);
ShipsToBePlaced.add(ships[4], 0, 4);
//Test imageview for dropped ship
ImageView test = new ImageView("Ships/ship2.png");
test.setPreserveRatio(true);
test.setFitWidth(80);
//First attempt at drag and drop
ImageView source = new ImageView ("Ships/ship2.png");
source.setPreserveRatio(true);
source.setFitWidth(80);
ShipsToBePlaced.add(source, 0, 0);
final GridPane target = Board;
//Drag detected event handler is used for adding drag functionality to the boat node
source.setOnDragDetected(new EventHandler<MouseEvent>() {
public void handle(MouseEvent event) {
//Drag was detected, start drap-and-drop gesture
//Allow any transfer node
Dragboard db = source.startDragAndDrop(TransferMode.ANY);
//Put ImageView on dragboard
ClipboardContent cbContent = new ClipboardContent();
cbContent.putImage(source.getImage());
//cbContent.put(DataFormat.)
db.setContent(cbContent);
source.setVisible(false);
event.consume();
}
});
//Drag over event handler is used for the receiving node to allow movement
target.setOnDragOver(new EventHandler<DragEvent>() {
public void handle(DragEvent event) {
//data is dragged over to target
//accept it only if it is not dragged from the same node
//and if it has image data
if(event.getGestureSource() != target && event.getDragboard().hasImage()){
//allow for moving
event.acceptTransferModes(TransferMode.MOVE);
}
event.consume();
}
});
//Drag entered changes the appearance of the receiving node to indicate to the player that they can place there
target.setOnDragEntered(new EventHandler<DragEvent>() {
public void handle(DragEvent event) {
//The drag-and-drop gesture entered the target
//show the user that it is an actual gesture target
if(event.getGestureSource() != target && event.getDragboard().hasImage()){
source.setVisible(false);
target.setOpacity(0.7);
System.out.println("Drag entered");
}
event.consume();
}
});
//Drag exited reverts the appearance of the receiving node when the mouse is outside of the node
target.setOnDragExited(new EventHandler<DragEvent>() {
public void handle(DragEvent event) {
//mouse moved away, remove graphical cues
source.setVisible(true);
target.setOpacity(1);
event.consume();
}
});
//Drag dropped draws the image to the receiving node
target.setOnDragDropped(new EventHandler<DragEvent>() {
public void handle(DragEvent event) {
//Data dropped
//If there is an image on the dragboard, read it and use it
Dragboard db = event.getDragboard();
boolean success = false;
int x, y;
if(db.hasImage()){
//target.setText(db.getImage()); --- must be changed to target.add(source, col, row)
//target.add(source, 5, 5, 1, 1);
//Places at 0,0 - will need to take coordinates once that is implemented
Board.add(test, 0, 0, 1, 1);
success = true;
}
//let the source know whether the image was successfully transferred and used
event.setDropCompleted(success);
event.consume();
}
});
source.setOnDragDone(new EventHandler<DragEvent>() {
public void handle(DragEvent event) {
//the drag and drop gesture has ended
//if the data was successfully moved, clear it
if(event.getTransferMode() == TransferMode.MOVE){
source.setVisible(false);
}
event.consume();
}
});
}
最佳答案
如果您可以访问实际放置的 Node
,您可以确定 GridPane
中的索引并对新节点和/或使用相同的索引以任何其他方式使用索引...
在这种情况下,您可以使用 DragEvent.getPickResult().getIntersectedNode()
或 Event.getTarget
获取目标 ImageView
:
public void handle(DragEvent event) {
//Data dropped
//If there is an image on the dragboard, read it and use it
Dragboard db = event.getDragboard();
boolean success = false;
Node node = event.getPickResult().getIntersectedNode();
if(node != target && db.hasImage()){
Integer cIndex = GridPane.getColumnIndex(node);
Integer rIndex = GridPane.getRowIndex(node);
int x = cIndex == null ? 0 : cIndex;
int y = rIndex == null ? 0 : rIndex;
//target.setText(db.getImage()); --- must be changed to target.add(source, col, row)
//target.add(source, 5, 5, 1, 1);
//Places at 0,0 - will need to take coordinates once that is implemented
ImageView image = new ImageView(db.getImage());
// TODO: set image size; use correct column/row span
Board.add(image, x, y, 1, 1);
success = true;
}
//let the source know whether the image was successfully transferred and used
event.setDropCompleted(success);
event.consume();
}
注意:由于您使用系统剪贴板来使用拖动事件,因此其他应用程序可能是拖动手势的来源或目标...
关于JavaFX 拖放到 GridPane?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41088095/
我在这里有一个我想要做的事情的例子:http://jsbin.com/OwoYAlEQ/1/edit 这是我的 HTML: person one person two person three per
我想知道是否有人知道是否有一个预先制定的解决方案:我在 ASP.net 网站上有一个列表,我希望用户能够通过拖放对列表进行重新排序。此外,我希望有第二个列表,用户可以将第一个列表中的项目拖到其中。 到
我想知道是否有人知道是否有一个预先制定的解决方案:我在 ASP.net 网站上有一个列表,我希望用户能够通过拖放对列表进行重新排序。此外,我希望有第二个列表,用户可以将第一个列表中的项目拖到其中。 到
我在我的 Web 应用程序中使用 Ajax ControlToolkit 中的 ModalPopupExtender。我将其 Drag 属性设置为 true,但是当我拖动弹出面板并将其放到新位置时,它
所以,基于this answer ,我有一组可以拖放并卡入到位的 div。唯一的问题是,可拖动的 div 具有不同的高度,我需要它们始终捕捉到目标的底部,而不是顶部。 您可以在this JsFiddl
我一直在使用 Bea 的解决方案 here一段时间后发现它非常有帮助。现在我遇到的问题是,当我将项目拖放到另一个 ListView 控件中或拖放到另一个 ListView 控件中,并且我想在拖动“期间
我试图在使用 QTreeWidget.setItemWidget() 重新父级(拖放)后将小部件放入 QTreeWidgetItem 但是,如果编译以下代码,结果是 QTreeWidgetItem 内
这是场景,我使用的是prototype和scriptaculous,但我相信jquery也会有同样的问题。我在相对定位的 div 中有一个可拖动图像的列表。问题是我无法将图像拖出父 div...好吧.
我正在使用一个普通(Bootstrap)表,我想在其中包含可排序的行。我正在使用 Angular CDK (DragDropModule) 来实现排序/排序。但是,当拖动行时,它会扭曲宽度,因为 cd
我正在尝试在我的 UICollectionView 中实现拖放机制,这与在快捷方式应用程序中重新排序快捷方式的组件非常相似。 截至目前,行为是当您开始拖动时,会留下一个透明的单元格 View ,而另一
我有以下 Jquery UI 拖放 jsfiddle https://jsfiddle.net/zoojsfiddle/ud96jdcp/ 具有
我希望创建一个基于网络的“公告板”,可以这么说,用户可以在其中创建/删除/拖放“图钉”,而不允许重叠“图钉”。 这是一个图表,应该有助于说明我正在尝试创建的内容: 'pins' 可能已创建双击;他们会
我是一名优秀的程序员,十分优秀!