Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] How to make combobox span width

Please use the eclipse.platform.swt newsgroup for SWT usage questions.

But always take a look at the SWT Homepage ( http://eclipse.org/swt/ ) first.

For layout managagement take a look at:
http://eclipse.org/articles/Understanding%20Layouts/Understanding%20Layouts.htm

If you're using GridLayout try:

control.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));

@@@@

Sebastian


Back to the top