How to design GUI with JBComponents?

已回答

Hi, I design the GUI Form. And I want to use JB Components to replace the default Component.

Like this:

JBSplitter -> JSplitPane
JBTable -> JTable
JBList -> JList

and so on..

I looked at some source code from intellij-community, but I have not found any *.form files.

How design those intellij default plugin and form windows ?

Or is it simply layout with code?

0

intellij-community contains currently 314 .form files: https://github.com/JetBrains/intellij-community/search?l=XML&q=filename%3Aform

However, using the UI Designer is now discouraged. It is recommended to use UI DSL.

1

请先登录再写评论。