组合框 : 组合框 « SWT-JFace-Eclipse « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » SWT-JFace-Eclipse » 组合框屏幕截图 
组合框
组合框


/******************************************************************************
 * Copyright (c) 1998, 2004 Jackwind Li Guojie
 * All right reserved. 
 
 * Created on Feb 8, 2004 9:25:39 AM by JACK
 * $Id$
 
 * visit: http://www.asprise.com/swt
 *****************************************************************************/



import java.util.Arrays;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;

public class SampleCombo {
  Display display = new Display();
  Shell shell = new Shell(display);

  public SampleCombo() {
    init();
    
    shell.setLayout(new GridLayout(2false));
    
    (new Label(shell, SWT.NULL)).setText("Select your favorite programming language: ");
    
    //final CCombo combo = new CCombo(shell, SWT.FLAT);
    final Combo combo = new Combo(shell, SWT.NULL);
    
    String[] languages = new String[]{"Java""C""C++""SmallTalk"};
    
    Arrays.sort(languages);
    
    for(int i=0; i<languages.length; i++)
      combo.add(languages[i]);
    
    //combo.add("Perl", 5);
    //combo.setItem(5, "Perl");
    
    combo.addSelectionListener(new SelectionListener() {
      public void widgetSelected(SelectionEvent e) {
        System.out.println("Selected index: " + combo.getSelectionIndex() ", selected item: " + combo.getItem(combo.getSelectionIndex()) ", text content in the text field: " + combo.getText());
      }

      public void widgetDefaultSelected(SelectionEvent e) {
        System.out.println("Default selected index: " + combo.getSelectionIndex() ", selected item: " (combo.getSelectionIndex() == -"<null>" : combo.getItem(combo.getSelectionIndex())) ", text content in the text field: " + combo.getText());
        String text = combo.getText();
        if(combo.indexOf(text0) { // Not in the list yet. 
          combo.add(text);
          // Re-sort
          String[] items = combo.getItems();
          Arrays.sort(items);
          combo.setItems(items);
        }
      }
    });

    shell.pack();
    shell.open();
    //textUser.forceFocus();

    // Set up the event loop.
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        // If no more entries in event queue
        display.sleep();
      }
    }

    display.dispose();
  }
  

  private void init() {

  }

  public static void main(String[] args) {
    new SampleCombo();
  }
}


           
       
Related examples in the same category
1. SWT组合框
2. 示范文本和标签示范文本和标签
3. 下拉框演示下拉框演示
4. 演示组合框(组合)演示组合框(组合)
5. 组合框(组合)为例组合框(组合)为例
6. 组合框(组合)示例2组合框(组合)示例2
7. 创建一个组合框(不可编辑)创建一个组合框(不可编辑)
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.