如何为无名 JFrame 设置框布局



好的,我正在尝试将Layout设置为无名称jFrame的BoxLayout,我应该放置什么而不是"WhatDoIPutHere"?

import javax.swing.BoxLayout;
import javax.swing.JFrame;
public class InterestCalculator extends JFrame{
    private static final long serialVersionUID = 1L;
    public static void main(String [] args) {
        InterestCalculator comp = new InterestCalculator();
        comp.FrameHandler();
    }
    public void FrameHandler() {
        setTitle("Template");
        setLocationRelativeTo(null);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setLayout(new BoxLayout(WhatDoIPutHere?, BoxLayout.Y_AXIS));
        pack();
        setVisible(true);
    }
}
  • 创建JPanel
  • 将框布局设置为面板
  • 将面板添加到框架中。

顺便说一句,除非更改现有功能或添加新功能,否则不要扩展JFrame

相关内容

  • 没有找到相关文章

最新更新