以编程方式访问滑块子结构

发布于 2024-12-10 18:13:52 字数 123 浏览 0 评论 0原文

我一直在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天煞孤星 2024-12-17 18:13:52

Slider 是一个常规的 JavaFX 节点,因此您可以遍历它的渲染树。例如,可以通过 styleClass 来标识子节点。请参阅下一个示例,该示例打印 Slider 结构。
从具有样式类“thumb”的节点,您可以获得拇指的屏幕位置。

public class DoSlider extends Application {
@Override
public void start(Stage stage) {
    Slider slider = SliderBuilder.create().min(0).max(100).value(50).showTickLabels(true).showTickMarks(true).build();

    stage.setScene(new Scene(new Group(slider)));
    stage.show();

    traverse(slider);
}

public void traverse(Parent node) {
    for (Node subNode : node.getChildrenUnmodifiable()) {
        System.out.println(subNode.getClass().getSimpleName() + " " + subNode.getStyleClass());
        if (subNode instanceof Parent) {
            traverse((Parent)subNode);
        }
    }
}

public static void main(String[] args) {
    launch(DoSlider.class, args);
}

接下来将输出:

SliderSkin slider
NumberAxis axis
Label label axis-label
LabelSkin label axis-label
Text 
Path axis-tick-mark
Path axis-minor-tick-mark
Text tick-mark
Text tick-mark
Text tick-mark
Text tick-mark
Text tick-mark
StackPane track
StackPane 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.

public class DoSlider extends Application {
@Override
public void start(Stage stage) {
    Slider slider = SliderBuilder.create().min(0).max(100).value(50).showTickLabels(true).showTickMarks(true).build();

    stage.setScene(new Scene(new Group(slider)));
    stage.show();

    traverse(slider);
}

public void traverse(Parent node) {
    for (Node subNode : node.getChildrenUnmodifiable()) {
        System.out.println(subNode.getClass().getSimpleName() + " " + subNode.getStyleClass());
        if (subNode instanceof Parent) {
            traverse((Parent)subNode);
        }
    }
}

public static void main(String[] args) {
    launch(DoSlider.class, args);
}

Output will be next:

SliderSkin slider
NumberAxis axis
Label label axis-label
LabelSkin label axis-label
Text 
Path axis-tick-mark
Path axis-minor-tick-mark
Text tick-mark
Text tick-mark
Text tick-mark
Text tick-mark
Text tick-mark
StackPane track
StackPane thumb
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文