gpt4 book ai didi

java - 如何使两个复选框在 Swing 中并排放置?

转载 作者:行者123 更新时间:2023-11-29 03:05:03 24 4
gpt4 key购买 nike

我有两个 JCheckBox 和一个 JEditorPane。我正在寻找如下所示的输出

enter image description here

但是我现在的代码有点乱,我做不到

private void createContents()
{
JEditorPane license;
JCheckBox confirmBox;
JCheckBox declineBox;

license = new JEditorPane("text/html", "");
license.setText (buildEulaText());
license.setEditable(false);
confirmBox = new JCheckBox("I accept.", false);
declineBox = new JCheckBox("I decline.", false);
add(license, BorderLayout.CENTER);
add(confirmBox, BorderLayout.SOUTH);
add(declineBox, BorderLayout.NORTH); //I know this is wrong
}

最佳答案

一个简单的解决方案是使用带有 FlowLayout 的新 JPanel 来组合布局。 .

add(license, BorderLayout.CENTER);
JPanel boxes = new JPanel(new FlowLayout());
// FlowLayout is the JPanel default layout manager, so
// boxes = new JPanel(); works too :)
boxes.add(confirmBox);
boxes.add(declineBox);
add(boxes, BorderLayout.SOUTH);

但是你也可以看看 GridBagLayout .

关于java - 如何使两个复选框在 Swing 中并排放置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32564170/

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