以编程方式访问滑块子结构
我一直在尝试使用 JavaFX,并且希望对 Slider 的子结构执行一些操作,例如获取拇指的大小和位置、触发我自己的鼠标悬停事件等,而无需推断基于滑块本身的位置和值的信息。是否可以以编程方式访问此子结构并收集有关它的一些基本信息?
I've been experimenting around with JavaFX and I was looking to perform some operations on the substructure of a Slider, such as get the size and position of the thumb, fire off my own mouse-over events, etc, without having to extrapolate that information based on the position and value of the slider itself. Is it possible to programmatically access this substructure and glean some basic information about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Slider 是一个常规的 JavaFX 节点,因此您可以遍历它的渲染树。例如,可以通过 styleClass 来标识子节点。请参阅下一个示例,该示例打印 Slider 结构。
从具有样式类“thumb”的节点,您可以获得拇指的屏幕位置。
接下来将输出:
Slider is a regular JavaFX Node, so you can traverse rendering tree for it. Subnodes can be identified, for example, by styleClass. See next example, which prints Slider structure.
From Node with style-class "thumb" you can get screen position of thumb.
Output will be next: