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.scene.Group 的 javadoc 说:
应用于组的任何变换、效果或状态都将应用于该组的所有子项
但是是否有可能检测到应用于其子项中的组的变换?即,如果父组对其应用了转换,您可以收听子项的属性吗?我尝试听 layoutXProperty()、translateXProperty()、getTransforms(),但无法检测到那里的变化。
当您向节点添加变换时,该变换将通过内部场景图渲染机制传播到其所有子节点(如果适用,并且没有错误),并且无法在子节点中知道它。子节点的转换列表对应于应应用于该节点及其子节点的转换,并且由用户设置,并且此列表(或相应的属性)不会通知您有关从父节点完成的转换。