I have a JPanel with the GridLayout. In every cell of the grid I have a button. I see that every button is surrounded by a gray border. I would like to remove these borders. Does anybody know how it can be done?
+1
A:
I think it's very likely the borders are part of the buttons' GUI. You could try calling .setBorder(null)
on all the buttons and see what happens!
Carl Smotricz
2010-04-26 12:02:08
+1
A:
Border emptyBorder = BorderFactory.createEmptyBorder();
yourButton.setBorder(emptyBorder);
For more details on borders see the BorderFactory
Eric Eijkelenboom
2010-04-26 12:10:50