- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在摆弄 GridBagLayout。我已经理解了一些,因此能够做出这个布局。但我的现状与我应该的不匹配。这是屏幕。
原样:(
应该是:s
我知道我必须稍微调整一下才能设置大小(setSize()
)。但真正棘手的是让“添加联系人”JLabel
位于顶部的中心。
等待您的回复。提前致谢。
这是我的代码
package SimpleCRUD;
import java.awt.Component;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
@SuppressWarnings("serial")
public class ContactListFrame extends JFrame{
JButton Button1, Button2;
JTextField textField1, textField2, textField3;
JLabel label1, label2, label3 , label4;
GridBagLayout layout = new GridBagLayout();
GridBagConstraints Constraint = new GridBagConstraints();
public ContactListFrame() {
super("All Contacts");
Button1 = new JButton("Add");
Button2 = new JButton("Cancel");
textField1 = new JTextField(15);
textField2 = new JTextField(15);
textField3 = new JTextField(15);
label4 = new JLabel("Add Contact");
label4.setFont (new Font("fallan", 1, 25));
label1 = new JLabel("First Name:");
label2 = new JLabel("Last Name:");
label3 = new JLabel("Phone Number:");
setLayout(layout);
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
setSize(400, 200);
setResizable(false);
Constraint.fill = GridBagConstraints.NONE;
Constraint.anchor = GridBagConstraints.NORTH;
addComponent(label4, 0, 1, 1, 1);
addComponent(textField1, 1, 1, 1, 1);
addComponent(textField2, 2, 1, 1, 1);
addComponent(textField3, 3, 1, 1, 1);
addComponent(label1, 1, 0, 1, 1);
addComponent(label2, 2, 0, 1, 1);
addComponent(label3, 3, 0, 1, 1);
addComponent(Button1, 4, 0, 2, 1);
addComponent(Button2, 4, 1, 2, 1);
}
public void addComponent (Component comp, int row, int col, int width, int height){
Constraint.gridx = col;
Constraint.gridy = row;
Constraint.gridwidth = width;
Constraint.gridheight = height;
layout.setConstraints(comp, Constraint);
add(comp);
}
}
最佳答案
如果你看一下documentation of GridBagLayout ,有一个相当好的 GridBagConstraints 用法示例。
这是修改为使用 GridBagConstraints 的代码
import java.awt.Component;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
public class ContactListFrame extends JFrame{
JButton Button1, Button2;
JTextField textField1, textField2, textField3;
JLabel label1, label2, label3 , label4;
GridBagLayout layout = new GridBagLayout();
GridBagConstraints Constraint = new GridBagConstraints();
public ContactListFrame() {
super("All Contacts");
Button1 = new JButton("Add");
Button2 = new JButton("Cancel");
textField1 = new JTextField(15);
textField2 = new JTextField(15);
textField3 = new JTextField(15);
label4 = new JLabel("Add Contact");
label4.setFont (new Font("fallan", 1, 25));
label1 = new JLabel("First Name:");
label2 = new JLabel("Last Name:");
label3 = new JLabel("Phone Number:");
setLayout(layout);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(400, 200);
setResizable(false);
Constraint.fill = GridBagConstraints.BOTH;
Insets ins = new Insets(5, 5, 5, 5);
Constraint.insets = ins;//this does the padding
Constraint.weightx = 0.0;
Constraint.gridwidth = GridBagConstraints.REMAINDER;//end row
add(label4, Constraint);
Constraint.gridwidth = GridBagConstraints.RELATIVE;//next to last component
add(label1, Constraint);
Constraint.gridwidth = GridBagConstraints.REMAINDER;//end row
add(textField1, Constraint);
Constraint.gridwidth = GridBagConstraints.RELATIVE;//next to last component
add(label2, Constraint);
Constraint.gridwidth = GridBagConstraints.REMAINDER;//end row
add(textField2, Constraint);
Constraint.gridwidth = GridBagConstraints.RELATIVE;//next to last component
add(label3, Constraint);
Constraint.gridwidth = GridBagConstraints.REMAINDER;//end row
add(textField3, Constraint);
Constraint.gridwidth = GridBagConstraints.RELATIVE;//next to last component
add(Button1, Constraint);
Constraint.gridwidth = GridBagConstraints.REMAINDER;//end row
add(Button2, Constraint);
}
public static void main(String args[]) {
new ContactListFrame().setVisible(true);
}
}
输出看起来像这样
关于java - 无法准确理解 GridBagConstraints 的用途和使用方法。现状与应然,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5871817/
我希望我的多行标签右对齐...不知道为什么这这么困难。我尝试使用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中它们的顶行按钮跨越宽度,而其下方只有一个按钮。我的兴趣主要是前两行。 但考虑相反的情况,
我是一名优秀的程序员,十分优秀!