web-dev-qa-db-ja.com

Swing JButton:テキストの上のアイコン

テキストの上にアイコンがあるSwingでJButtonを作成するにはどうすればよいですか?

33
codegy

これを行うだけです:


    button.setVerticalTextPosition(SwingConstants.BOTTOM);
    button.setHorizontalTextPosition(SwingConstants.CENTER);
70
berlindev