📄 grabexcesshorizontalspace1.java
字号:
/**
* @作者:陈刚
* @Email:glchengang@yeah.net
* @Blog:http://blog.csdn.net/glchengang
*/
package swt;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class GrabExcessHorizontalSpace1 {
public static void main(String[] args) {
final Display display = Display.getDefault();
final Shell shell = new Shell();
shell.setSize(327, 253);
shell.setText("SWT Application");
//------------------新插入的界面核心代码------------------------
//3列且makeColumnsEqualWidth=false
shell.setLayout(new GridLayout(3, false));
new Button(shell, SWT.NONE).setText("button1");
new Button(shell, SWT.NONE).setText("button2");
new Button(shell, SWT.NONE).setText("button3");
new Button(shell, SWT.NONE).setText("button4");
Button button = new Button(shell, SWT.NONE);
GridData gridData = new GridData();//定义一个GridData对象
gridData.grabExcessHorizontalSpace = true; //空间横向随容器变化
button.setLayoutData(gridData);
button.setText("b5");
//------------------END---------------------------------------------
shell.layout();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -