JPanel GridBagLayout没有对齐垂直对象

时间:2013-12-11 01:43:08

标签: java swing jpanel gridbaglayout

以下代码的问题在于它将MenuPane分成两半而不是所需的10%到90%

TitlePaneControlPane只是JPanel。

public class MenuPane extends JPanel {

public MenuPane( int width, int height ){

    setSize( width, height );

    setLayout( new GridBagLayout() );

    GridBagConstraints c = new GridBagConstraints();

    c.gridx = 0;
    c.gridy = 0;

    c.weightx = 0.0d;
    c.weighty = 0.1d;

    add( new TitlePane( this.getWidth(), (int) (this.getHeight()*c.weighty) ), c );


    c.gridx = 0;
    c.gridy = 1;

    c.weightx = 0.0d;
    c.weighty = 0.9d;

    add( new ControlPane( this.getWidth(), (int) (this.getHeight()*c.weighty) ), c );

}

}

1 个答案:

答案 0 :(得分:2)

add( new TitlePane( this.getWidth(), (int) (this.getHeight()*c.weighty) ), c );

不知道该代码的作用,但组件在可见GUI上显示组件之前没有大小。所以你的getWidth()/ Height()方法将返回0。

如果您希望组件以90/10比率显示,则初始首选大小也必须为90/10比率。权重因子仅适用于调整组件大小的时间。

我不知道你的ControlPane代码是什么样的,所以我不能建议做出具体的改变。

您可以尝试使用专为此设计的Relative Layout。您只需在将容器添加到容器时指定配给量,它就会从那里管理尺寸。