gpt4 book ai didi

java - 网格宽度和网格高度不起作用

转载 作者:行者123 更新时间:2023-12-02 11:18:58 24 4
gpt4 key购买 nike

我正在java中使用GridBagLayout,我编写了以下代码,但它没有按我的预期工作
我预计第一个按钮将放置在框架左上角的点 (0,0) 中。
其次,我预计第二个按钮的高度和宽度将是第一个按钮高度和宽度的两倍,但事实并非如此。
这是输出:https://ibb.co/hDZPgx
这是代码:

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

public class GUIJframe extends JFrame {

private JButton jb1 = new JButton("first");
private JButton jb2 = new JButton("second");
private JButton jb3 = new JButton("third");
private GridBagConstraints gbc = new GridBagConstraints();
private GridBagLayout gbl = new GridBagLayout();

public GUIJframe () {
jcb.addItem(names);
setLocation(150,150);
setSize(500,500);
setLayout(gbl);
addComponent(jb1,0,0,1,1);
addComponent(jb2,1,0,2,2);
addComponent(jb3,2,2,5,5);
setVisible(true);
}

public void addComponent (Component component, int gridx,int gridy, int width, int height) {
gbc.gridx = gridx;
gbc.gridy = gridy;
gbc.gridwidth = width;
gbc.gridheight = height;
gbl.setConstraints(component,gbc);
add (component);
}
}

最佳答案

I expected that the second button height and width would be twice the size of the first button height and width

你的期望是错误的。

GridBagLayout 单元格非常灵活。一列的宽度不依赖于其他列的宽度。它仅取决于其中子组件的宽度(以及 insets 和 ipadx,如果设置的话)。

如果一个组件占用两列,但这两列中都没有其他内容,则 GridBagLayout 没有理由将列扩展得比容纳该组件的首选宽度所需的更大。

高度和 GridBagLayout 行也是如此。

要强制一个组件的大小是另一个组件的两倍,您将需要不同的布局。 SpringLayout可以做到,虽然不太好用。您可能会发现更容易简单地输入 add a ComponentListener在“较小”组件上,并使用该组件的新尺寸作为“较大”组件 preferred size 的基础.

为了达到您想要的结果,我将使用 SpringLayout。

SpringLayout 允许您创建约束,称为 Spring s,表示组件的边缘、宽度和高度的尺寸范围。这些可能取决于其他组件的尺寸范围或容器的边缘。

SpringLayout layout = new SpringLayout();
setLayout(layout);

SpringLayout.Constraints jb1Constraints =
new SpringLayout.Constraints(jb1);

SpringLayout.Constraints jb2Constraints =
new SpringLayout.Constraints(
Spring.sum(jb1Constraints.getX(), jb1Constraints.getWidth()),
jb1Constraints.getY(),
Spring.scale(jb1Constraints.getWidth(), 2),
Spring.scale(jb1Constraints.getHeight(), 2));

SpringLayout.Constraints jb3Constraints =
new SpringLayout.Constraints(
Spring.sum(jb2Constraints.getX(),
Spring.scale(jb2Constraints.getWidth(), 0.5f)),
Spring.sum(jb2Constraints.getY(), jb2Constraints.getHeight()),
Spring.scale(jb1Constraints.getWidth(), 5),
Spring.scale(jb1Constraints.getHeight(), 5));

add(jb1, jb1Constraints);
add(jb2, jb2Constraints);
add(jb3, jb3Constraints);

// Make container big enough to hold all components.

layout.putConstraint(
SpringLayout.EAST, getContentPane(), 0,
SpringLayout.EAST, jb3);

layout.putConstraint(
SpringLayout.SOUTH, getContentPane(), 0,
SpringLayout.SOUTH, jb3);

jb1 的约束是最简单的:遵守该组件的最小大小、首选大小和最大大小。位置为 (0, 0)。

jb2 的约束取决于 jb1 的约束:

  • jb2 的 Spring x 坐标为 jb1.x + jb1.width,它实际上是 jb1 的右边缘。
  • jb2 与 jb1 具有相同的 y(实际上为零)。
  • 宽度和高度是 jb1 的宽度和高度,缩放 2。

jb3 的约束取决于 jb2 和 jb1:

  • x坐标为jb2.x + (jb2.width ÷ 2),即jb2的水平中心点。
  • y 坐标为 jb2.y + jb2.height,它实际上是 jb2 的底边。
  • 宽度和高度是 jb1 的宽度和高度,缩放 5 倍。

最后,SpringLayout 与其他布局管理器不同,它不会自动将其布局的容器的大小设置为足够大以容纳所有子组件。我们必须自己完成这项工作,使用 SpringLayout.putConstraint将容器的右边缘 (EAST) 链接到 jb3 的右边缘,将容器的底边缘 (SOUTH) 链接到 jb3 的底边缘。

关于java - 网格宽度和网格高度不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50069583/

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