Return to Snippet

Revision: 9546
at November 11, 2008 12:28 by monkey103


Initial Code
public MyDialog(Shell parentShell) {
super(parentShell);
setShellStyle(SWT.CLOSE | SWT.MODELESS | SWT.BORDER | SWT.TITLE);
setBlockOnOpen(false);
}

Initial URL
http://www.eclispezone.com/eclipse/forums/m92149780.html

Initial Description
An example of creating non-modal dialog boxes which extend the Dialog class is SWT/Eclipse

Initial Title
create modeless JFace dialog ...

Initial Tags
plugin

Initial Language
Java