- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个表单,但在使用 GridBagConstraints
时遇到困难。当我设置gridy
时,它似乎不起作用。这是我的代码:
thisWindow = new GridBagConstraints();
thisWindow.insets = new Insets(5, 5, 5, 5);
thisWindow.weightx = 1.0;
thisWindow.weighty = 1.0;
thisWindow.gridheight = 4;
thisWindow.anchor = GridBagConstraints.NORTHWEST;
//set elements
thisWindow.gridx = 0;
thisWindow.gridy = 0;
charScreen.add(nameLbl, thisWindow);
thisWindow.gridx = 1;
thisWindow.gridy = 0;
charScreen.add(charNameCmb, thisWindow);
thisWindow.gridx = 2;
thisWindow.gridy = 0;
charScreen.add(raceLbl, thisWindow);
thisWindow.gridx = 3;
thisWindow.gridy = 0;
charScreen.add(raceCmb, thisWindow);
thisWindow.gridx = 4;
thisWindow.gridy = 0;
charScreen.add(genderLbl, thisWindow);
thisWindow.gridx = 5;
thisWindow.gridy = 0;
charScreen.add(genderCmb, thisWindow);
//This should be on a new line.
thisWindow.gridx = 0;
thisWindow.gridy = 1;
charScreen.add(levelLbl, thisWindow);
thisWindow.gridx = 1;
thisWindow.gridy = 1;
charScreen.add(levelSpn, thisWindow);
thisWindow.gridx = 2;
thisWindow.gridy = 1;
charScreen.add(charClassLbl, thisWindow);
thisWindow.gridx = 3;
thisWindow.gridy = 1;
charScreen.add(charClassCmb, thisWindow);
thisWindow.gridx = 4;
thisWindow.gridy = 1;
charScreen.add(deityLbl, thisWindow);
thisWindow.gridx = 5;
thisWindow.gridy = 1;
charScreen.add(deityCmb, thisWindow);
thisWindow.gridx = 6;
thisWindow.gridy = 1;
charScreen.add(homelandLbl, thisWindow);
thisWindow.gridx = 7;
thisWindow.gridy = 1;
charScreen.add(homelandTxt, thisWindow);
//This should be on a third line.
thisWindow.gridx = 0;
thisWindow.gridy = 2;
charScreen.add(sizeLbl, thisWindow);
thisWindow.gridx = 1;
thisWindow.gridy = 2;
charScreen.add(sizeTxt, thisWindow);
charScreen.setVisible(true);
我尝试过使用各种 anchor ,但没有任何帮助。我遇到的问题是,应该位于第二行和第三行的两个部分都与第一行重叠。非常感谢任何对此的建议。
最佳答案
你的 gridHeight 把你搞乱了。
更改:
thisWindow.gridheight = 4;
至
thisWindow.gridheight = 1;
请注意,我创建了自己的 MCVE 来测试这一点:
import java.awt.*;
import javax.swing.*;
public class TestCharScreen {
private static GridBagConstraints thisWindow;
private static JPanel charScreen = new JPanel(new GridBagLayout());
private static JLabel nameLbl = new JLabel("nameLbl");
private static JLabel charNameCmb = new JLabel("charNameCmb");
private static JLabel raceLbl = new JLabel("raceLbl");
private static JLabel raceCmb = new JLabel("raceCmb");
private static JLabel genderLbl = new JLabel("genderLbl");
private static JLabel genderCmb = new JLabel("genderCmb");
private static JLabel levelLbl = new JLabel("levelLbl");
private static JLabel levelSpn = new JLabel("levelSpn");
private static JLabel charClassLbl = new JLabel("charClassLbl");
private static JLabel charClassCmb = new JLabel("charClassCmb");
private static JLabel deityLbl = new JLabel("deityLbl");
private static JLabel deityCmb = new JLabel("deityCmb");
private static JLabel homelandLbl = new JLabel("homelandLbl");
private static JLabel homelandTxt = new JLabel("homelandTxt");
private static JLabel sizeLbl = new JLabel("sizeLbl");
private static JLabel sizeTxt = new JLabel("sizeTxt");
public static void main(String[] args) {
thisWindow = new GridBagConstraints();
thisWindow.insets = new Insets(5, 5, 5, 5);
thisWindow.weightx = 1.0;
thisWindow.weighty = 1.0;
// *****
thisWindow.gridheight = 4; // 4? *****
thisWindow.anchor = GridBagConstraints.NORTHWEST;
//set elements
thisWindow.gridx = 0;
thisWindow.gridy = 0;
charScreen.add(nameLbl, thisWindow);
thisWindow.gridx = 1;
thisWindow.gridy = 0;
charScreen.add(charNameCmb, thisWindow);
thisWindow.gridx = 2;
thisWindow.gridy = 0;
charScreen.add(raceLbl, thisWindow);
thisWindow.gridx = 3;
thisWindow.gridy = 0;
charScreen.add(raceCmb, thisWindow);
thisWindow.gridx = 4;
thisWindow.gridy = 0;
charScreen.add(genderLbl, thisWindow);
thisWindow.gridx = 5;
thisWindow.gridy = 0;
charScreen.add(genderCmb, thisWindow);
//This should be on a new line.
thisWindow.gridx = 0;
thisWindow.gridy = 1;
charScreen.add(levelLbl , thisWindow);
thisWindow.gridx = 1;
thisWindow.gridy = 1;
charScreen.add(levelSpn, thisWindow);
thisWindow.gridx = 2;
thisWindow.gridy = 1;
charScreen.add(charClassLbl, thisWindow);
thisWindow.gridx = 3;
thisWindow.gridy = 1;
charScreen.add(charClassCmb, thisWindow);
thisWindow.gridx = 4;
thisWindow.gridy = 1;
charScreen.add(deityLbl, thisWindow);
thisWindow.gridx = 5;
thisWindow.gridy = 1;
charScreen.add(deityCmb, thisWindow);
thisWindow.gridx = 6;
thisWindow.gridy = 1;
charScreen.add(homelandLbl, thisWindow);
thisWindow.gridx = 7;
thisWindow.gridy = 1;
charScreen.add(homelandTxt, thisWindow);
//This should be on a third line.
thisWindow.gridx = 0;
thisWindow.gridy = 2;
charScreen.add(sizeLbl, thisWindow);
thisWindow.gridx = 1;
thisWindow.gridy = 2;
charScreen.add(sizeTxt, thisWindow);
charScreen.setBorder(BorderFactory.createTitledBorder("charScreen"));
// charScreen.setVisible(true);
JOptionPane.showMessageDialog(nameLbl, charScreen);
}
}
关于Java Gridbagconstraints gridy 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27204399/
我希望我的多行标签右对齐...不知道为什么这这么困难。我尝试使用weightx并添加一个空白jlabel并赋予其权重1.0。我无法让它发挥作用。这个想法是一个人全部左对齐,另一个人右对齐。 (有点像短
请看下面这张图片: 如您所见,“添加程序”、“删除程序”、“添加新单元”和“删除单元”与前面的按钮重叠。 之前的按钮放置在 (0,9) 处,指定的按钮放置在 (0,10) 处。 这是代码: impor
我需要使用 GridBagLayout 但出现以下错误。你能帮忙吗? java.lang.IllegalArgumentException: cannot add to layout: constra
如何填充感兴趣的网格单元中可用的垂直和水平空间? 例如: JTextArea file1 = new JTextArea(); file1.setBorder(BorderFactory.create
此代码生成三个按钮。按钮“一”出现在“北”并部分覆盖位于东的按钮“二”。按钮三出现在西南方。如何获得按钮 1 和 2 重叠但没有按钮 3 的相同布局? import java.awt.Componen
我有点困惑,是否可以有多个 GridBagConstraints? 我有两个使用 GridBagLayout 的面板,它们都受到相同约束的影响。在将较小的组件放在较大的组件旁边时,这给我带来了一个问题
我遇到异常:java.lang.IllegalArgumentException: cannot add to layout: constraints must be a GridBagConstra
使用 GridBagLayout,我尝试这样安排我的组件: 但是组件变成了这样,所有的东西都混在一起了: 我以前从未使用过GridBagConstraints 字段gridwidth 和gridhei
这就是我想要的结果: 但这就是我得到的: 现在,我了解 GridBagConstraints.HORIZONTAL; 允许组件水平占据任何空白空间,但我不确定如何让组件仅填充其网格空间的剩余量。这是我
我对 Swing 编程有些陌生,我发现尽管我很喜欢 GridBagLayout 的强大功能,但如果您有很多组件,就会有很多代码行来设置布局。除了使用可视化编辑器之外,还有什么好的方法可以控制这种情况?
我目前已使用以下代码创建了一个 JFrame。我希望三个 JLabel 一个在另一个之上,它们相应的 JTextFields 在右侧,四个 JButtons 在它们下面(我最终将使用插图将它们分开)。
我正在尝试如下对齐我的组件: 但目前他们是这样的: 这两个组件位于使用 FlowLayout 的 JPanel 上(构造函数包含 FlowLayout.LEFT)。第一个组件具有以下网格包约束: Gr
这个问题已经有答案了: How to set an image as a background for Frame in Swing GUI of java? (8 个回答) 已关闭 3 年前。 我得
我正在尝试创建一个表单,但在使用 GridBagConstraints 时遇到困难。当我设置gridy时,它似乎不起作用。这是我的代码: thisWindow = new GridBagConstra
我是 Java Swing 的新手,正在开发一个项目来帮助我更加熟悉它。我注意到在更改标签文本时, GridBagLayou 中的单元格增加/减少(您可以通过边界线大小调整来判断)。我想知道是否有办法
为什么我的按钮约束不起作用?我查看了 Java 文档,并且正在做与教程相同的事情,但对我来说,无论我使用什么 gridx、y、宽度或填充,按钮都保持不变。有任何想法吗?这是我的代码: class My
我制作了一个自定义组件,以便可以显示图像等,但它拒绝正确使用 anchor 并在顶部居中。有人有解决办法吗?另外,如果有人能给我指出一个更简单的布局,我可能会切换,但我已经使用了大量的 GridBag
我正在设置一个面板,并且正在使用 GridBagLayout。但是,当我设置面板时,标签没有按照我想要的方式排列(我希望它们像统计表一样阅读)。旋转标签应该显示在最左侧,但它们显示在中间。我的代码中是
我有几种方法可以在 JPanel 中创建自己的组件 JButton 或 JLabel。然后我有一个单独的方法,它将所有这些 JPanels 添加到 JFrame 中。我还在 JPanel 上使用 gr
我发现很多帖子讨论如何使用 GridBagLayout,但它们总是与我需要的相反。 例如,在this post中它们的顶行按钮跨越宽度,而其下方只有一个按钮。我的兴趣主要是前两行。 但考虑相反的情况,
我是一名优秀的程序员,十分优秀!