gpt4 book ai didi

java - 如何为无名 JFrame 设置框布局?

转载 作者:行者123 更新时间:2023-11-29 03:12:57 24 4
gpt4 key购买 nike

好的,我正在尝试将无名 jFrame 的 setLayout 设置为 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

关于java - 如何为无名 JFrame 设置框布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28307099/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com