Swing JButton: Icon above Text

后端 未结 1 1101
一向
一向 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)
提交回复
热议问题