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 の上に 1 つの Rectangle がある場合、HBox の 6 つの要素で MouseEntered イベントと MouseExited イベントをキャッチする必要がありますが、Rectangle がそれらをキャッチしているため、これは不可能です。
回答ありがとうございます
node.setMouseTransparent(true);ノードをマウス イベントに対して透過的にするために使用します。
node.setMouseTransparent(true);