SWT(JFace)體驗之FillLayout結構。本站提示廣大學習愛好者:(SWT(JFace)體驗之FillLayout結構)文章只能為提供參考,不一定能成為您想要的結果。以下是SWT(JFace)體驗之FillLayout結構正文
FillLayout結構
FillLayout長短常簡略的一種結構方法,它會以異樣年夜小對父組件中的子組件停止結構,這些子組件將以一行或一列的情勢分列。普通來講,用戶可以在義務欄、對象欄中放置FillLayout結構,經由過程FillLayout結構對子組件停止定位,也能夠當子組件只要一個組件時,經由過程FillLayout結構填充全部父組件的空間。
FillLayout的作風
FillLayout結構中,可以把子組件按程度或垂直的方法停止分列,這些作風是當創立FillLayout實類時以參數情勢指定的。
演示代碼:
package swt_jface.demo2;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class FillLayoutSample {
Display display = new Display();
Shell shell = new Shell(display);
public FillLayoutSample() {
FillLayout fillLayout = new FillLayout(SWT.VERTICAL);
fillLayout.marginHeight = 5;
fillLayout.marginWidth = 5;
fillLayout.spacing = 1;
shell.setLayout(fillLayout);
Button button1 = new Button(shell, SWT.PUSH);
button1.setText("button1");
Button button2 = new Button(shell, SWT.PUSH);
button2.setText("button number 2");
Button button3 = new Button(shell, SWT.PUSH);
button3.setText("3");
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new FillLayoutSample();
}
}