Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使 JavaFX 中的一些节点对鼠标事件不可见。例如,有一个 HBox,里面有 6 个元素,HBox 上有一个 Rectangle,现在我需要在 HBox 的 6 个元素上捕获 MouseEntered 和 MouseExited 事件,这是不可能的,因为 Rectangle 正在捕获它们。
谢谢你的回答
用于node.setMouseTransparent(true);使节点对鼠标事件透明。
node.setMouseTransparent(true);