Swing JButton: Icon above Text

后端 未结 1 1097
一向
一向 2021-02-05 01:36

How can I create a JButton in Swing with the icon above the text?

相关标签:
1条回答
  • 2021-02-05 02:10

    just do this:

    
        button.setVerticalTextPosition(SwingConstants.BOTTOM);
        button.setHorizontalTextPosition(SwingConstants.CENTER);
    
    
    0 讨论(0)
提交回复
热议问题