Sep
23
|
Use the JButton classes setVerticalTextPosition() and setHorizontalTextPosition() methods to control the text positioning.
JButton button = new JButton("Press Me", icon); // Text below image button.setVerticalTextPosition(SwingConstants.BOTTOM); // And centred button.setHorizontalTextPosition(SwingConstants.CENTER);
Array ( ) One Response to “How do I display an image in a JButton with the text centered below the image?”
Leave a Reply
You must be logged in to post a comment.
March 3rd, 2012 at 7:08 am
It is more simple and useful.
Thanks.