gpt4 book ai didi

java - 我如何将 JPanel 分成 70% 30%

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:52:56 27 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Swing: How do I set a component height to the container's height?

我如何像下面显示的图片那样划分 JPanel 有 2 个面板 panel1 和 panel2panel1 应占 70%,panel2 应占 30%,或者 panel1 应大于 panel2 ...我已经尝试过 Gridlayout、Border Layout 但它不起作用。任何帮助将不胜感激。

public class TestApplication extends JApplet {

private static final long serialVersionUID = 1L;

JPanel p1,p2;

public void init(){
setLayout(new GridLayout(3,1));
p1=new JPanel();
p2=new JPanel();

p1.setBackground(Color.RED);
p2.setBackground(Color.GREEN);

add(p1);
add(p2);
}
}

enter image description here

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