我从未使用过GridBagLayout,但是我敢肯定它可能是其他东西。目前,我正在尝试添加一个TextArea来充当正在执行的任何代码的控制台视口窗口。就目前而言,TextArea很小,实际上看不到任何文本。
我尝试咨询page以获得建议之一,但仍然无法正确显示JTextArea。
下面粘贴了代码,如果您还有其他需要,请告诉我。我还附加了一张额外的图片,显示了它的当前状态。 编辑:setup();是一个空的身体。
@SuppressWarnings("serial")
public abstract class MainComponent extends JPanel {
protected String componentName = "DEMO";
private JLabel title;
private GridBagConstraints gbc;
private Insets spacing;
private Font buttonFont;
/*
* Redirection manipulation for the project.
*/
private JTextArea localConsole;
public MainComponent(Dimension dim) {
setup();
/* Set main body */
setLayout(new GridBagLayout());
gbc = new GridBagConstraints();
spacing = new Insets(100,5,100,5);
buttonFont = new Font("Consolas", Font.ITALIC, 22);
/* Set title */
title = new JLabel(componentName);
title.setFont(new Font("Consolas", Font.BOLD, 48));
gbc.fill = GridBagConstraints.CENTER;
gbc.gridx = 1;
gbc.gridy = 0;
add(title, gbc);
JButton run = new JButton("Run Project");
run.setFont(buttonFont);
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = spacing;
gbc.gridx = 0;
gbc.gridy = 2;
add(run, gbc);
JButton open = new JButton("Open Codebase");
open.setFont(buttonFont);
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = spacing;
gbc.gridx = 1;
gbc.gridy = 2;
add(open, gbc);
JButton exit = new JButton("Exit Program");
exit.setFont(buttonFont);
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.insets = spacing;
gbc.gridx = 2;
gbc.gridy = 2;
add(exit, gbc);
/* Setup console for output */
localConsole = new JTextArea();
DefaultCaret caret = (DefaultCaret) localConsole.getCaret();
caret.setUpdatePolicy(2);
localConsole.setEditable(false);
localConsole.setFont(new Font("Consolas", Font.PLAIN, 16));
localConsole.setWrapStyleWord(true);
localConsole.setSize(new Dimension(400, 200));
JScrollPane scrollPane = new JScrollPane(localConsole);
scrollPane.setVerticalScrollBarPolicy(22);
scrollPane.setSize(new Dimension(400, 200));
gbc.fill = GridBagConstraints.CENTER;
gbc.insets = new Insets(200, 0, 20, 0);
gbc.gridx = 1;
gbc.gridy = 3;
gbc.gridwidth = 5;
gbc.gridheight = 2;
add(scrollPane, gbc);
}
答案 0 :(得分:1)
向我们提供当前情况的图片并没有真正的帮助,因为我们不知道您要达到的目标很难提出确切的建议。
所以看到的是一种尝试:
因此,我建议您永远不需要使用单个布局管理器。很多时候,组合使用布局管理器会更容易。
所以我建议你:
Page_START
CENTER
中。因此基本代码为:
setLayout( new BorderLayout() );
JPanel buttonsPanel = new JPanel();
buttonsPanel.add(run);
buttonsPane.add((open);
buttonsPanel.add(exit);
add(buttonsPanel, BorderLayout.PAGE_START);
JTextArea textArea = new JTextArea(10, 30); // give text area a default preferred size
add(new JScrollPane(textArea), BorderLayout.CENTER);
比尝试使用GridBagLayout更简单,更少的代码。
但是,如果您想使用GridBagLayout的做法,请先阅读How to Use GridBagLayout上的Swing教程,以获取有关约束的更多信息。
基本代码可能类似于:
gbc.gridx = 0;
gbc.gridy = 0;
add(run, gbc);
gbc.gridx = 1;
gbc.gridy = 0;
add(open, gbc);
gbc.gridx = 2;
gbc.gridy = 0;
add(exit, gbc);
localConsole = new JTextArea(5, 20);
JScrollPane scrollPane = new JScrollPane(localConsole);
gbc.fill = GridBagConstraints.CENTER;
gbc.gridx = 0;
gbc.gridy = 1;
gbc.gridwidth = 3; // try this with 1 and 2 to see the difference.
add(scrollPane, gbc);
那就是您不能只随机使用gridx / gridy / gridwidth / gridheight值。
组件需要显示在网格中。您不能在网格中留下空白。
因此,如果要连续放置按钮,则需要为相同的网格值顺序增加gridx。
如果您想要按钮下方的文本区域,则依次使网格变暗并从新的gridx值开始。