new Combo(Shell shell, SWT.SIMPLE) : Combo « org.eclipse.swt.widgets « Java by API






new Combo(Shell shell, SWT.SIMPLE)


import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class MainClass {

  public static void main(String[] a) {
    final String[] ITEMS = { "A", "B", "C", "D", "E"};

    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new RowLayout());

    // Create a drop-down combo
    Combo combo = new Combo(shell, SWT.DROP_DOWN);
    combo.setItems(ITEMS);

    // Create a read only combo
    Combo readOnly = new Combo(shell, SWT.DROP_DOWN | SWT.READ_ONLY);
    readOnly.setItems(ITEMS);

    // Create a "simple" combo
    Combo simple = new Combo(shell, SWT.SIMPLE);
    simple.setItems(ITEMS);

    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();

  }
}

           
       








Related examples in the same category

1.new Combo(Shell shell, SWT.DROP_DOWN)
2.new Combo(Shell shell, SWT.DROP_DOWN | SWT.READ_ONLY)
3.new Combo(Composite parent, int style)(SWT.DROP_DOWN | SWT.BORDER)
4.new Combo(Shell s, SWT.READ_ONLY)
5.Combo: add(String sel)
6.Combo: addSelectionListener(SelectionListener lis)
7.Combo: getItems()
8.Combo: getText()
9.Combo: select(int index)
10.Combo: setEnabled(boolean b)
11.Combo: setItems(String[] values)