gpt4 book ai didi

java - 将所有组件设置为 JFrame 的中心

转载 作者:行者123 更新时间:2023-11-30 06:14:37 25 4
gpt4 key购买 nike

我使用了 FormLayout,我想将所有组件(JLabel 和 JtextField)设置在 JFrame 的中心。

我尝试使用 panel.setAlignmentX 和 panel.setAlignmentY 但它不起作用。

 panel.setAlignmentX(Component.CENTER_ALIGNMENT);
panel.setAlignmentY(Component.CENTER_ALIGNMENT);

下面是我的一段代码,请帮忙谢谢。

import java.awt.Component;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;

@SuppressWarnings("serial")
public class UI extends JFrame {

private JPanel panel = new JPanel();

public UI() {

FormLayout layout = new FormLayout(
"pref, pref, pref, pref",
"pref, pref, pref, pref");

panel.setLayout(layout);
CellConstraints cc = new CellConstraints();

panel = new JPanel (layout);

panel.add(new JLabel("L1 "), cc.xy(2, 2));
panel.add(new JTextField(15), cc.xy(3, 2));

panel.add(new JLabel("L2 "), cc.xy(2, 3));
panel.add(new JTextField(15), cc.xy(3, 3));
panel.setAlignmentX(Component.CENTER_ALIGNMENT);
panel.setAlignmentY(Component.CENTER_ALIGNMENT);
add(panel);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
pack();
setSize(510,400);
setLocationRelativeTo(null);
setResizable(false);
}

public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
new UI().setVisible(true);

}
});
}
}

最佳答案

使用 GridBagLayout。默认情况下,添加到布局的任何组件(面板)都将居中:

//add(panel);
setLayout( new GridBagLayout() );
add(panel, new GridBagConstraints());

这将允许您在包含您的组件的面板上使用您的 FormLayout。现在内容 Pane 正在使用 GridBagLayout,因此您的表单将居中。

关于java - 将所有组件设置为 JFrame 的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30055557/

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