Hide the title of a TitledPane in JavaFX 2.2
问题 A TitledPane features a title. Here is how a couple of them can look: The titles are "More..", "Smileys" and "Send". I want to completely hide the Send title, not just remove the text "Send". The end result should be something like this: Is it possible? 回答1: I would just use a standard Pane for the third content area rather than a TitledPane and apply the relevant styles to trick JavaFX into styling the bottom panel as if it was the content area of a TitlePane . Roughly speaking you will