PropertyGrid in Java Swing

Is there a control in Java Swing similar to a PropertyGrid in .NET?

if so, which one? Or at least which one is closest?

Thanks!

+4
source share
3 answers

There is no built-in component for this, but there are several third-party projects. In particular, it looks like Java-Bean-Examiner (GPL).

Java-Bean-Examiner Java- Bean -Examiner http://sourceforge.net/dbimage.php?id=114041

Edit: Also Common L2FProd components ( Apache-licensed , which you may find more attractive than the GPL):

L2FProd PropertySheet http://l2fprod.com/common/images/PropertySheetPanel.gif

+4
source

Common Fork L2FProd components on GitGub

+2
source

I would recommend using JGoodies (Forms and Looks) to create your own property editor. This should be pretty quick to do, and you can do it a lot better than with the standard Swing Look, Feel and layouts.

+1
source

All Articles