1

我想点击像 ImageView 这样的组件。

  ImageView iv = new ImageView(new Image(getClass().getResourceAsStream("/image.png")));
  //What function to use to click through iv ?

我试试这个,但还是不行

iv.setMouseTransparent(true);     
4

1 回答 1

1

如果您不希望节点接收鼠标事件,请将其设置为mouse transparent

imageView.setMouseTransparent(true);
于 2013-08-08T12:47:20.770 回答