java gui boxlayout问题

发布于 2024-12-04 14:04:16 字数 199 浏览 2 评论 0原文

我正在开发一个 java gui 应用程序硬编码,没有任何 netbeans 帮助。我正在为我的图形用户界面使用框布局。从我在网上看到的盒子布局应该将元素堆叠在一起,我的问题很简单。但是,我有一个文本区域(x,y),一个切换按钮和另一个文本区域(x,y),当显示时,我的第一个文本区域和切换按钮之间有一个间隙,切换按钮和第二个文本区域之间有一个间隙。为什么它们不被堆叠起来! 谢谢,

I am working on a java gui application hard coding without any netbeans help. I am using the box layout for my gui. My question is simple from what I see online boxlayout should stack elements on top of each other. However, I have a textarea(x,y) a toggle button and another textarea(x,y) when this is displayed there is a gap between my first text area and the toggle button and a gap between the toggle button and the 2nd textarea. Why are they not being stacked!
Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凯凯我们等你回来 2024-12-11 14:04:16

下面是一个 SSCCE 示例,试图演示您的问题。也许您可以修改它以向我们展示发生了什么:

import java.awt.*;
import javax.swing.*;

public class BoxLayoutEg {
   public static void main(String[] args) {
      JTextArea area1 = new JTextArea(10, 20);
      JToggleButton toggleBtn = new JToggleButton("Foo");
      JTextArea area2 = new JTextArea(10, 20);

      JPanel toggleBtnPanel = new JPanel();
      toggleBtnPanel.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 0));
      // toggleBtnPanel.setLayout(new GridLayout());
      toggleBtnPanel.add(toggleBtn);

      JPanel mainJPanel = new JPanel();
      mainJPanel.setLayout(new BoxLayout(mainJPanel, BoxLayout.PAGE_AXIS));

      mainJPanel.add(new JScrollPane(area1));
      mainJPanel.add(toggleBtnPanel);
      mainJPanel.add(new JScrollPane(area2));

      JOptionPane.showMessageDialog(null, mainJPanel);

   }
}

Here's an example of an SSCCE that tries to demonstrate your problem. Perhaps you can modify it to show us what's going on:

import java.awt.*;
import javax.swing.*;

public class BoxLayoutEg {
   public static void main(String[] args) {
      JTextArea area1 = new JTextArea(10, 20);
      JToggleButton toggleBtn = new JToggleButton("Foo");
      JTextArea area2 = new JTextArea(10, 20);

      JPanel toggleBtnPanel = new JPanel();
      toggleBtnPanel.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 0));
      // toggleBtnPanel.setLayout(new GridLayout());
      toggleBtnPanel.add(toggleBtn);

      JPanel mainJPanel = new JPanel();
      mainJPanel.setLayout(new BoxLayout(mainJPanel, BoxLayout.PAGE_AXIS));

      mainJPanel.add(new JScrollPane(area1));
      mainJPanel.add(toggleBtnPanel);
      mainJPanel.add(new JScrollPane(area2));

      JOptionPane.showMessageDialog(null, mainJPanel);

   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文