JavaFX: Disable horizontal scrollbar of TableView

后端 未结 1 521
無奈伤痛
無奈伤痛 2021-01-18 02:47

I have the following question: I would like to disable the horizontal scrollbar of my TableView. It may not be visible, but also the TableView may not be scrolled horizontal

相关标签:
1条回答
  • 2021-01-18 03:21

    Try to set

    table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
    

    without setting pref width of columns.

    0 讨论(0)
提交回复
热议问题