gpt4 book ai didi

Java Swing 布局

转载 作者:行者123 更新时间:2023-11-29 09:56:54 28 4
gpt4 key购买 nike

我想要下面的布局...

  • JButtons 在顶部并排在一起。
  • JTextArea 应该在按钮
  • JTextArea 还应该有一个滚动条
    ...对于下面的代码。

    JPanel jp = new JPanel();   
    One = new JButton("One");
    Two = new JButton("Two");
    TestOutput = new JTextArea();

    jp.add(One);
    jp.add(Two);
    jp.add(TestOutput);

最佳答案

使用嵌套布局:到 JPanelBorderLayout ,

  • NORTH 的按钮添加一个具有 FlowLayoutJPanel
  • JTextAreaJScrollPaneCENTER

关于Java Swing 布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8191420/

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