The Java FX Scen Builder contains quite a special form of a toggle button. Several Buttons are visually concatenated and separated by a small vertical line:

I wonder how this is done. Does somebody have any idea?
|
The Java FX Scen Builder contains quite a special form of a toggle button. Several Buttons are visually concatenated and separated by a small vertical line:
I wonder how this is done. Does somebody have any idea? |
|||
|
|
|
It's an HBox of ToggleButton's all with the same ToggleGroup and custom css. There is an example with source code of displaying a similar control group in the Ensemble sample application (which Ensemble terms a Pill Button). The Ensemble sample source license is BSD I think, so you should be able to use it in your app. Go to Ensemble, search for |
||||
|