繁体   English   中英

如果拖动 ScrollPane 内的按钮,如何使 JavaFX ScrollPane 继续滚动?

[英]How to make JavaFX ScrollPane keep scrolling if a button inside ScrollPane is dragged?

我在我的 java 项目的 JFXPanel 中有一个 JavaFX ScrollPane。 该项目将在没有键盘的触摸显示器中进行,因此我需要模拟触摸屏滚动。

问题是; 如果我在 ScrollPane 中拖动鼠标,它可以正常工作,但如果我将鼠标拖动到有按钮的地方,它就无法滚动(想法是 ScrollPane 将充满按钮,它们之间没有空格)。

白色部分和按钮在 ScrollPane 内

这是在我的代码中创建 ScrollPane 的部分。

    private static Scene createScene(int wS, int hS) {
        ScrollPane scrollPane = new ScrollPane();
        FlowPane flowpane = new FlowPane();
        
        scrollPane.setCache(true);
        scrollPane.setVbarPolicy(ScrollPane.ScrollBarPolicy.NEVER);
        scrollPane.setPannable(true);

        for(int i=0; i<100; i++)
            flowpane.getChildren().add((new ButtonProduct(wS, "Apple " + (i+1)));
        
        scrollPane.setContent(flowpane);
        Scene  scene  =  new  Scene(scrollPane);
        return (scene);
    }

编辑:

我在拖动按钮时添加了一个 MouseEvent,但我不知道如何“选择滚动窗格”来移动它。

    public ButtonProduct(int wS, String t) {
        this.setText(t);
        this.setMinSize((int) (wS*sizeW), (int) (wS*sizeW));
        this.setPrefSize((int) (wS*sizeW), (int) (wS*sizeW));
        this.setMaxSize((int) (wS*sizeW), (int) (wS*sizeW));
        this.setOnDragDetected(new EventHandler<MouseEvent>() {
            @Override
            public void handle(MouseEvent e) {
                System.out.println("Dragged Button");
                e.consume();
            }
        });
    }

我找到了答案,这是 ScrollPane 中 Button(Node) 的代码。 但是您需要恢复按钮事件以获得更好的性能,这不是在下一个代码上开发的。

import javax.swing.*;
import java.awt.*;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.control.Button;
import javafx.scene.input.MouseEvent;
import javafx.scene.control.ScrollPane;

public class ButtonProduct extends Button {
    private static double sizeW = .075;
    //Constructor
    public ButtonProduct(ScrollPane sC, int wS, String t) {
        this.setText(t);
        this.setMinSize((int) (wS*sizeW), (int) (wS*sizeW));
        this.setPrefSize((int) (wS*sizeW), (int) (wS*sizeW));
        this.setMaxSize((int) (wS*sizeW), (int) (wS*sizeW));
        this.setOnDragDetected(new EventHandler<MouseEvent>() {
            @Override
            public void handle(MouseEvent e) {
                ((Button) e.getSource()).setEventDispatcher(sC.getEventDispatcher());
                sC.requestFocus();
                e.consume();
            }
        });
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM