Issue
I'm trying to replicate the properties window in Netbeans' form designer, to some extend. I don't know where to start, because I don't know which javax.swing components are used in that properties window.
If anyone could tell me which components are used, or could send me a reference link, it would be highly appreciated.
Solution
I'm trying to replicate the properties window in Netbeans' form designer, to some extend. I don't know where to start.
Almost everything, but these are the one shown in the image.
- JTable (for the table cells)
- JMenuBar
- JMenuItem
- JScrollPane (for the scrollbar)
- JPanel (for grouping and arranging your sub components)
- JCheckBox
and probably also..
- JTextField
- JBotton
which is not shown in your image.
Just search on the list and use the tutorial from Oracle such as this one: JTable
Answered By - user3437460