- 406 名前:デフォルトの名無しさん [2008/09/12(金) 21:08:05 ]
- >>404
Display display = new Display (); Shell shell = new Shell (display); Label label = new Label (shell, SWT.NONE); label.setText ("ほげ"); shell.pack(); shellopen(); while (!shell.isDisposed ()) { // ← !がないと落ちる if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); }
|

|