结合2个tableviews在一起,使得它们在同步滚动(Binding two tableviews

2019-07-31 17:24发布

我想结合两个tableviews在一起,使得它们同步滚动。 我怎么做? 我无法找出如何访问的tableview的滚动条。

Answer 1:

我做了一个CSS破解的泰伯维绑定与外部滚动条。 一个滚动条控制两个tableviews。

我的想法的概述:

  • 创建两个tableviews
  • 做一个垂直滚动条。 让我们myScrollbar调用它在这个例子中
  • 设定最小和最大myScrollbar来分钟= 0,最大值= TableView.Items.size的尺寸()
  • 当myScrollbar价值的变化则通话双方的tableview的scrollTo(int)的函数
  • 禁止用CSS实现的tableview的本地垂直滚动条。

这会给你两个表,都是由一个外部滚动条(myScrollbar)控制。

下面是隐藏使用CSS一的tableview的滚动条的代码:

/* The main scrollbar **track** CSS class  */

.mytableview .scroll-bar:vertical .track{
        -fx-padding:0px;
    -fx-background-color:transparent;
    -fx-border-color:transparent;
    -fx-background-radius: 0em;
    -fx-border-radius:2em;

}

/* The increment and decrement button CSS class of scrollbar */

.mytableview .scroll-bar:vertical .increment-button ,
.mytableview .scroll-bar:vertical .decrement-button {

    -fx-background-color:transparent;
    -fx-background-radius: 0em;
    -fx-padding:0 0 0 0;
}

.mytableview  .scroll-bar:vertical .increment-arrow,
.mytableview  .scroll-bar:vertical  .decrement-arrow
{
    -fx-shape: " "; 
    -fx-padding:0;        
}

/* The main scrollbar **thumb** CSS class which we drag every time (movable) */
.mytableview .scroll-bar:vertical .thumb {
    -fx-background-color:transparent;
    -fx-background-insets: 0, 0, 0;
    -fx-background-radius: 2em;
    -fx-padding:0px;

}

然后,我们需要设置如何使用滚动条滚动的实现代码如下。

scroll.setMax(100); //make sure the max is equal to the size of the table row data.
scroll.setMin(0); 
scroll.valueProperty().addListener(new ChangeListener(){

    @Override
    public void changed(ObservableValue ov, Number t, Number t1) {
        //Scroll your tableview according to the table row index
        table1.scrollTo(t1.intValue()); 
        table2.scrollTo(t1.intValue());
    }

});

http://blog.ngopal.com.np/2012/09/25/how-to-bind-vertical-scroll-in-multi-tableview/



Answer 2:

我不认为这是目前可能的。 TableViewSkin从VirtualContainerBase具有VirtualFlow场继承。 该VirtualFlow对象有两个VirtualScrollBar领域,HBAR和直条是你追求的。 我看不到得到它虽然任何方式。

有趣的是,也有在TableView中的私人contentWidth场虽然这是私人的。 我敢肯定的是,JFX团队正在超谨慎开放太多这是可以理解的API。 你可以问得到开辟了一个int财产上的JFX JIRA功能再审或的OpenJFX-dev邮件列表,则contentWidth领域。

一个权宜措施是表视图选择模型的选择的项目或索引属性绑定。



Answer 3:

我发现解决问题最简单的方法是绑定可见的valueProperty一个隐藏滚动条。

// Controller 
@FXML private TableView<MyBean> tableLeft;
@FXML private TableView<MyBean> tableRight;
@FXML private ScrollBar scrollBar;


@SuppressWarnings("rawtypes")
private void bindScrollBars(TableView<?> tableView1, TableView<?> tableView2, 
                 ScrollBar scrollBar, Orientation orientation) {

    // Get the scrollbar of first table
    VirtualFlow vf = (VirtualFlow)tableView1.getChildrenUnmodifiable().get(1);
    ScrollBar scrollBar1 = null;
    for (final Node subNode: vf.getChildrenUnmodifiable()) {
        if (subNode instanceof ScrollBar && 
                ((ScrollBar)subNode).getOrientation() == orientation) {
            scrollBar1 = (ScrollBar)subNode;
        }
     }

    // Get the scrollbar of second table
    vf = (VirtualFlow)tableView2.getChildrenUnmodifiable().get(1);
    ScrollBar scrollBar2 = null;
    for (final Node subNode: vf.getChildrenUnmodifiable()) {
        if (subNode instanceof ScrollBar && 
                ((ScrollBar)subNode).getOrientation() == orientation) {
            scrollBar2 = (ScrollBar)subNode;
        }
     }

    // Set min/max of visible scrollbar to min/max of a table scrollbar
    scrollBar.setMin(scrollBar1.getMin());
    scrollBar.setMax(scrollBar1.getMax());

    // bind the hidden scrollbar valueProterty the visible scrollbar
    scrollBar.valueProperty().bindBidirectional(scrollBar1.valueProperty());
    scrollBar.valueProperty().bindBidirectional(scrollBar2.valueProperty());
}

/*
 * This method must be called in Application.start() after the stage is shown,
 * because the hidden scrollbars exist only when the tables are rendered
 */
public void setScrollBarBinding() {
    bindScrollBars(this.tableLeft, this.tableRight, this.scrollBar, Orientation.VERTICAL);
}

现在,你必须调用显示之后的阶段和表呈现从应用的结合:

// Application
    private MyController controller;

    @Override
    public void start(Stage primaryStage) {
        try {
            FXMLLoader fxmlLoader = new FXMLLoader(SalesApp.class.getResource("scene.fxml"));
            BorderPane root = (BorderPane) fxmlLoader.load();;
            Scene scene = new Scene(root);
            scene.getStylesheets().add(getClass().getResource("app.css").toExternalForm());
            primaryStage.setScene(scene);
            primaryStage.show();            
controller = (MyController) fxmlLoader.getController();
            controller.setScrollBarBinding();
        } catch(Exception e) {
            e.printStackTrace();
        }
    }

现在的表应通过鼠标,键盘或滚动条滚动同步。

玩得开心,奥拉夫



文章来源: Binding two tableviews together such that they scroll in sync