伙伴云客服论坛»论坛 S区 S软件开发 查看内容

0 评论

0 收藏

分享

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();
}
}

回复

举报 使用道具

相关帖子
全部回复
暂无回帖,快来参与回复吧
本版积分规则 高级模式
B Color Image Link Quote Code Smilies

Happy柠檬
注册会员
主题 22
回复 21
粉丝 0
|网站地图
快速回复 返回顶部 返回列表