zf00110011
发贴: 14
积分: 0
|
于 2006-05-17 18:53
看来还是自己看书看的太少了,现在已经解决了。 主窗口: 。。。。。。 final Button button = new Button(shell, SWT.NONE); button.setText("button1"); button.setBounds(115, 125, 105, 30); button.addSelectionListener(new SelectionAdapter(){ public void widgetSelected(SelectionEvent e){ HelloWorldone one = new HelloWorldone(); one.open(); } }); 。。。。。。
被调用的窗口: 。。。。。。 public void open() { final Display display = Display.getDefault(); final Shell shell = new Shell(); shell.setSize(500, 375); shell.setText("SWT Application"); //
shell.open(); shell.layout(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } 。。。。。。。
|