JavaFX ScrollPane border and background

后端 未结 7 2316
独厮守ぢ
独厮守ぢ 2020-12-14 10:56

I\'m having some problem regarding the default background and border of the ScrollPane. Using this style made the problem clearer to see.

setStyle(\"-fx-back         


        
7条回答
  •  臣服心动
    2020-12-14 11:34

    Try use this first

    .scroll-pane > .viewport {
       -fx-background-color: transparent;
    }
    

    Before setting the background color

提交回复
热议问题