Set JButton text size 設定字體大小
Set JButton text size
Can not find JButton setFontsize func.
找不到 JButton. SetFontsize 之類的 func.
import javax.swing.JButton;
import java.awt.Font;
//------
//inside Frame...
//Create button with text ( MY BUTTON )
JButton button=new JButton("MY BUTTON");
//Create font.
//Font Name : Default button font
//Font Style : Default button font style
//Font Size : 16
Font newButtonFont=new Font(button.getFont().getName(),button.getFont().getStyle(),16);
//Set JButton font using new created font
button.setFont(newButtonFont);
//------