Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse-dev] GridLayout with >2 columns and imaginary center line

Use Eclipse WindowBuilder to WYSIWYG design your GUI, including managing the layout as you describe here:

https://eclipse.org/windowbuilder

FindĀ  "HorizontalSpan and VerticalSpan" here:

https://www.eclipse.org/articles/Article-Understanding-Layouts/Understanding-Layouts.htm



On Tue, 27 Sept 2022 at 11:37, Mickael Istria <mistria@xxxxxxxxxx> wrote:
Hi,

1 parent composite with GridLayout(numColumns: 2, equalWidth: true) and 3 children:: 1 composite for `Label1: Text1________` another for `Label2: Text2_________` and another for `Label3: Text3________`. The latest one must has a GridData.horizontalSpan=2; each child composite has a GridLayout(2, false) and the Text have GridData.grabExcessibeHorizontalSpace=true.

HTH
_______________________________________________
eclipse-dev mailing list
eclipse-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/eclipse-dev

Back to the top