簡體   English   中英

如何跨越gridLayout的2列?

[英]How to span 2 column of gridLayout?

我想在網格布局中跨越 3 列中的 2 列,但我不知道該怎么做,有人可以給我一些指導嗎?

示例代碼和圖像如下:

@PostConstruct
    public void PostConstruct(Composite parent) {

        toolkit = new FormToolkit(Display.getDefault());
        form = new ScrolledForm(parent, SWT.V_SCROLL);
        form.setBounds(0, 0, 650, 478);
        form.setExpandHorizontal(true);
        form.setExpandVertical(true);
        form.setBackground(toolkit.getColors().getBackground());
        form.setForeground(toolkit.getColors().getColor(IFormColors.TITLE));
        form.setFont(JFaceResources.getHeaderFont());
        form.setText("DOCUMENTATIONS");
        toolkit.decorateFormHeading(form.getForm());
        GridLayout cl = new GridLayout(3, true);
        form.getBody().setLayout(cl);

        sectionSelection = toolkit.createSection(form.getBody(), Section.TITLE_BAR);
        sectionSelection.setText("");
        sectionClientSelection = toolkit.createComposite(sectionSelection);

        sectionClientSelection.setLayout(new GridLayout());
        sectionClientSelection.setLayoutData(new GridData(100, 100));
        sectionSelection.setClient(sectionClientSelection);

        createSelectionSection();

        sectionDefinition = toolkit.createSection(form.getBody(), Section.TITLE_BAR);
        sectionDefinition.setText("");
        sectionClientDefinition = toolkit.createComposite(sectionDefinition);

        sectionClientDefinition.setLayout(new GridLayout());
        GridData gridData = new GridData(SWT.FILL,GridData.VERTICAL_ALIGN_END);
        gridData.horizontalSpan = 2;
        gridData.horizontalAlignment = GridData.FILL;
        sectionClientDefinition.setLayoutData(gridData);
        sectionDefinition.setClient(sectionClientDefinition);

        createDefinitionSection();

    }

在此處輸入圖片說明

您需要為該部分而不是該部分中的復合設置布局數據。

sectionDefinition.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 2, 1));

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM