Can I make Swing JButtons have smaller margins?

后端 未结 2 886
礼貌的吻别
礼貌的吻别 2021-02-18 15:08

I prefer buttons with minimal margins, about as wide as their text caption. Is there a way to achieve that in a JButton in Swing?

What I am seeing in practice now is tha

2条回答
  •  攒了一身酷
    2021-02-18 16:04

    I believe setMargin is what you're looking for.

    myButton.setMargin(new Insets(0, 0, 0, 0));
    

提交回复
热议问题