slam4:gui:swt

Ceci est une ancienne révision du document !


Standard Widget Toolkit

Installer au besoin Window Builder Pro dans Eclipse.

  • Création d'un projet : Choisir File/New/other/Window Builder/SWT/JFace java Project
  • Choisir File/New/other/SWT/Application Window

public class MainWindow {

	protected Shell shell;

	/**
	 * Launch the application.
	 * @param args
	 */
	public static void main(String[] args) {
		try {
			MainWindow window = new MainWindow();
			window.open();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * Open the window.
	 */
	public void open() {
		Display display = Display.getDefault();
		createContents();
		shell.open();
		shell.layout();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch()) {
				display.sleep();
			}
		}
	}

	/**
	 * Create contents of the window.
	 */
	protected void createContents() {
		shell = new Shell();
		shell.setSize(450, 300);
		shell.setText("SWT Application");

	}

}

Créer l'interface suivante en mode Design

  • Sélectionner L'option 1, faire apparaître le menu contextuel avec le bouton droit de la souris :
  • Choisir add Event Handler/ Selection/ WidgetSelected

		btnOption.addSelectionListener(new SelectionAdapter() {
			@Override
			public void widgetSelected(SelectionEvent e) {

			}
		});

  • slam4/gui/swt.1364261036.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)