Missing NetBeans 8 GUI Properties?

My netblock guy seems to be missing the option to change the jpanel border style. The videos and images of the tutorials show a property table that is slightly different from mine.

EDIT:

So, I created a new JPanel from File> new File. Et voila, properties popped out of nowhere and also in the JFrame.

my netbeans

sample on the net

+3


source to share


1 answer


A is java.awt.Canvas

not a Swing component. You may be looking for javax.swing.JComponent

one that includes "border support". For example, the blue tint JPanel

named buttonPanel

in the picture below has TitledBorder

.



image

+5


source







All Articles