制作Sash窗口 : 腰带控件 « 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. 83. 3. 制作Sash窗口
  1. The default behavior of the sash allows dragging, but you must write code to make the sash stay.
  2. You implement an event handler to adjust the FormAttachment object associated with the sash's movable direction.
  3. For a vertical sash, adjust the left FormAttachment.
  4. For a horizontal sash, adjust the top FormAttachment.
制作Sash窗口
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.FormAttachment;
import org.eclipse.swt.layout.FormData;
import org.eclipse.swt.layout.FormLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Sash;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class SashFormSticker {
  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setText("Sash One");

    shell.setLayout(new FormLayout());

    final Sash sash = new Sash(shell, SWT.VERTICAL);
    FormData data = new FormData();
    data.top = new FormAttachment(00)// Attach to top
    data.bottom = new FormAttachment(1000)// Attach to bottom
    data.left = new FormAttachment(500)// Attach halfway across
    sash.setLayoutData(data);

    Text one = new Text(shell, SWT.BORDER);
    data = new FormData();
    data.top = new FormAttachment(00);
    data.bottom = new FormAttachment(1000);
    data.left = new FormAttachment(00);
    data.right = new FormAttachment(sash, 0);
    one.setLayoutData(data);

    Text two = new Text(shell, SWT.BORDER);
    data = new FormData();
    data.top = new FormAttachment(00);
    data.bottom = new FormAttachment(1000);
    data.left = new FormAttachment(sash, 0);
    data.right = new FormAttachment(1000);
    two.setLayoutData(data);

    
    sash.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(SelectionEvent event) {
        // Reattach to the left edge, and use the x value of the event to
        // determine the offset from the left
        ((FormDatasash.getLayoutData()).left = new FormAttachment(0, event.x);

        // Until the parent window does a layout, the sash will not be redrawn in
        // its new location. So, force a layout.
        sash.getParent().layout();
      }
    });
    
    
    shell.pack();
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();

  }
}
17. 83. 腰带控件
17. 83. 1. 窗扇窗扇
17. 83. 2. 分裂Dragger的大小分裂Dragger的大小
17. 83. 3. 制作Sash窗口制作Sash窗口
17. 83. 4. Sash窗口:实现一个简单的分配器( 20像素的限制)Sash窗口:实现一个简单的分配器( 20像素的限制)
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.