How can I hide the horizontal scrollbar of a ListView? I tried it in different ways and probably it's totally easy, but I just can't get it to run.
相关问题
- How to create Circular view on android wear?
- Update/change array value from another view contro
- JSON Exception - No value for wanted parameter
- Android: ListView rounded corner hidden by list it
- I get an exception when trying to swap elements in
相关文章
- Set color of 'empty' area of ListView in A
- How to overlay items in StackPanel or ListView?
- Low quality icon in taskbar of a Stage. JavaFX
- Loading custom font using JavaFX 8 and css
- Javafx Platform.runLater never running
- How to highlight multiple items in a list view?
- How to zoom list item from center of pinch
- Are PostgreSQL VIEWS created newly each time they
Try this in the CSS:
I think that would be nicer a ListCell with a Pane(for example StackPane) and a Label inside that will have the ellipsis functionality:
You can have a look at this link.
The same solution could be used for other ListCells complex.
Bit of a hack, but this should do it. In the CSS:
Note that the scroll bar is still there, and mouse gestures around where it "should" be will result in scroll behavior.