| Author |
JButton with no Border
|
Garandi Garandi
Ranch Hand
Joined: Jan 07, 2003
Posts: 192
|
|
I want to add a JButton with no border, so that if I set the button to be disabled the button should not be visible. Thank you Garandi
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15229
|
|
Well, losing the Border of a JButton does not make it invisible. It only removes the border. To do this you simply use the setBorderPainted(boolean) method of JButton. If you want the button to disappear if it is disabled, you will have to remove it from whatever container you have it on. container.remove(button). And don't foget to call repaint and/or revalidate so that the changes take affect.
|
 |
Chantal Ackermann
Ranch Hand
Joined: Sep 28, 2000
Posts: 508
|
|
to make the button invisible, you can call to make it visible, use visible(true). this works most nicely! Chantal
|
 |
 |
|
|
subject: JButton with no Border
|
|
|