Custom radio buttons

Answered

I'm building a project wizard and designing the UI with java swing/intelliJ UI components.

I would like to show the custom radio buttons (or are they called differently?) like in the JavaFX or Micronaut project generators (attached an image).

I've been looking through the docs and the UI kits but I just can't seem to find them. I'm running IntelliJ ultimate 2022.2.5 on windows 10.

 

0
1 comment

Hi,

I recommend using UI Inspector to check how a given UI component is implemented.

This component is called SegmentedButton. You can create it with Kotlin UI DSL. See com.intellij.ui.dsl.builder.Row.segmentedButton().

0

Please sign in to leave a comment.