所以,我只需要添加標題到我的揮杆。這裏的代碼:如何編輯波動的大小?
import javax.swing.*;
import java.util.Scanner;
public class Wall extends JFrame {
public static void main(String[] args) {
new Wall();
}
public Wall() {
final String title = "Wall Game";
this.setSize(300,300); //sets the screen
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle(title);
this.setVisible(true);
JPanel panel1 = new JPanel();
JLabel label1 = new JLabel("Welcome to the Wall Game!");
JLabel label2 = new JLabel("Click the button to read the instructions!");
panel1.add(label1);
panel1.add(label2);
this.add(panel1);
}
}
我想要歡迎來到牆上游戲!這部分要大一些。是否有可能讓它更大?如果有獎金,我想知道您是否可以添加不同的字體。但現在這並不重要。
感謝任何知道:P。
[如何更改JLabel的字體大小以獲取最大大小](http://stackoverflow.com/questions/2715118/how-to-change-the-size-of-the - 一個標籤的最大尺寸) –
簡短的回答是,使用'JLabel#setFont',[示例](http://stackoverflow.com/questions/30699169/如何定位a-jlabel-in-the-specified-layout/30699233#30699233)併爲[示例]加載字體(http://stackoverflow.com/questions/24177348/font-awesome-with-swing/ 24177458#24177458)和[示例](http://stackoverflow.com/questions/21081586/using-a-custom-font-for-a-jlabel/21081821#21081821) – MadProgrammer