How to change header component in TitledPane in JavaFX

前端 未结 4 1491
栀梦
栀梦 2020-12-03 08:51

I cannot find an answer about this anywhere on the internet.

I have an application that has to have collapsable panels, so the TitledPane and Accordion set-up in Jav

4条回答
  •  离开以前
    2020-12-03 09:22

    This is how you remove the arrow:

    .titled-pane > .title > .arrow-button > .arrow{
        -fx-shape: null;
    }
    

提交回复
热议问题