使用RowLayout : 行布局 « SWT « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » SWT » 行布局 
17. 99. 1. 使用RowLayout
  1. places all controls in a single column or row.
  2. it doesn't force all contained controls to the same size.
  3. wrap controls to a new row or column if it runs out of space.
  4. uses the RowData class to determine initial widths and heights for its controls.
使用RowLayout
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.RowData;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class RowLayoutTest {
  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    RowLayout layout = new RowLayout(SWT.VERTICAL);
    layout.marginLeft = 20;
    layout.marginTop = 20;
    layout.justify = true;
    shell.setLayout(layout);
    
    new Button(shell, SWT.PUSH).setText("one");
    new Button(shell, SWT.PUSH).setText("two");
    new Button(shell, SWT.PUSH).setText("three");
    new Button(shell, SWT.PUSH).setText("four");
    new Button(shell, SWT.PUSH).setText("five");
    new Button(shell, SWT.PUSH).setText("six");
    Button b = new Button(shell, SWT.PUSH);
    b.setText("seven");
    b.setLayoutData(new RowData(100100));
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();
  }
}
17. 99. 行布局
17. 99. 1. 使用RowLayout使用RowLayout
17. 99. 2. 从RowLayout使用所有默认值从RowLayout使用所有默认值
17. 99. 3. RowLayout :对齐控件连续RowLayout :对齐控件连续
17. 99. 4. RowLayout片段:调整控件行RowLayout片段:调整控件行
17. 99. 5. RowLayout:填补RowLayout:填补
17. 99. 6. RowLayout:对齐RowLayout:对齐
17. 99. 7. RowLayout: marginLeft, marginRight, marginTop, marginBottomRowLayout: marginLeft, marginRight, marginTop, marginBottom
17. 99. 8. pack: Specifies whether all controls should take their preferred sizepack: Specifies whether all controls should take their preferred size
17. 99. 9. RowLayout:间距RowLayout:间距
17. 99. 10. RowLayout:类型RowLayout:类型
17. 99. 11. RowLayout:总结RowLayout:总结
17. 99. 12. 使用RowData对象使用RowData对象
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.