SWT XP-Style ToolWindows

Thomas Darimont

Erfahrenes Mitglied
Hallo!

(Getestet mit SWT unter Eclipse 3.1)
Code:
 package de.tutorials;
 
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.widgets.Display;
 import org.eclipse.swt.widgets.Shell;
 
 public class SWTToolWindowExample {
 
 	/**
 	 * @param args
 	 */
 	public static void main(String[] args) {
 		Display display = new Display();
 		Shell shell = new Shell(display, SWT.TOOL | SWT.CLOSE | SWT.TITLE);
 		shell.setText("Form1");
 
 		shell.setSize(75, 93);
 		shell.open();
 
 		while (!shell.isDisposed()) {
 			if (!display.readAndDispatch()) {
 				display.sleep();
 			}
 		}
 	}
 }

Gruß Tom
 

Anhänge

  • toolwnd.gif
    toolwnd.gif
    2 KB · Aufrufe: 219
Zurück