如何隐藏SWT复合材料以使其不占用空间?

时间:2013-07-07 14:53:15

标签: java swt

我需要隐藏复合材料(以及所有儿童)。只需设置setVisible(false)即可保留复合空间。

Composite outer = new Composite(parent, SWT.NONE);      
outer.setLayout(new GridLayout(1,false));
outer.setLayoutData(new GridData(GridData.FILL_BOTH) );

Composite compToHide = new MyComposite(outer, SWT.NONE);        
compToHide.setLayout(new GridLayout());
compToHide.setVisible(false);

2 个答案:

答案 0 :(得分:23)

以下是一些可以满足您需求的代码。我基本上将GridData#excludeControl#setVisible(boolean)结合使用来隐藏/取消隐藏Composite

public static void main(String[] args)
{
    Display display = new Display();
    final Shell shell = new Shell(display);
    shell.setText("StackOverflow");
    shell.setLayout(new GridLayout(1, true));

    Button hideButton = new Button(shell, SWT.PUSH);
    hideButton.setText("Toggle");

    final Composite content = new Composite(shell, SWT.NONE);
    content.setLayout(new GridLayout(3, false));

    final GridData data = new GridData(SWT.FILL, SWT.FILL, true, true);
    content.setLayoutData(data);

    for(int i = 0; i < 10; i++)
    {
        new Label(content, SWT.NONE).setText("Label " + i);
    }

    hideButton.addListener(SWT.Selection, new Listener()
    {
        @Override
        public void handleEvent(Event arg0)
        {
            data.exclude = !data.exclude;
            content.setVisible(!data.exclude);
            content.getParent().pack();
        }
    });

    shell.pack();
    shell.open();
    while (!shell.isDisposed())
    {
        if (!display.readAndDispatch())
            display.sleep();
    }
    display.dispose();
}

隐藏之前:

enter image description here

隐藏后:

enter image description here

答案 1 :(得分:1)

为您的控件定义GridData,然后执行以下操作: control.setVisible(false)执行gridData.exclude=true

相关问题