Which method can I use for the JButton edges do not appear?

2

I think the question already describes everything: What method can I use to make the borders of my JButton transparent (not appear) in Java?

    
asked by anonymous 15.06.2015 / 06:10

1 answer

3
seuJButton.setBorder(null);
seuJButton.setContentAreaFilled(false);

Result:

Info:

15.06.2015 / 06:35