JFrame文字大小

问题描述 投票:2回答:1

我一直在尝试制作一个中间有很大文本的JFrame,但是我为改变文本大小所做的每一次尝试都只是在页面的一角产生了一些小小的单词。屏幕。

public class StuffMost {
    public static JLabel three = new JLabel();
    public static JFrame one = new JFrame();
    public static JButton four = new JButton();

    public static void seconday() {
        one.setVisible(true);
        one.setResizable(true);

        one.setDefaultCloseOperation(one.EXIT_ON_CLOSE);
        one.setSize(1280, 800);
        one.setTitle("Hello! Welcome to my window. You Shall Never Leave.");
        one.setBackground(Color.BLUE);
        three.setText("Dont");
        one.add(three);
        three.setSize(900, 300);
        one.add(four);
    }

}
java text jframe size
1个回答
0
投票

请勿在Label上使用setSize,因为这不会更改字体。如果要放大字体,则可以使用:

© www.soinside.com 2019 - 2024. All rights reserved.