Ignore:
Timestamp:
09/26/11 20:24:03 (13 years ago)
Author:
sherbold
Message:

Further work on the SWT GUI prototype.
The GUI is still not finished, however, most features are implemented and the GUI can be used. It may cause some problems, and some features are still missing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt/ModelPropertiesDialog.java

    r194 r195  
    121121                 
    122122                Button btnClose = new Button(shlModelProperties, SWT.NONE); 
     123                btnClose.addSelectionListener(new SelectionAdapter() { 
     124                        @Override 
     125                        public void widgetSelected(SelectionEvent e) { 
     126                                shlModelProperties.dispose(); 
     127                        } 
     128                }); 
    123129                btnClose.setText("Close"); 
    124130 
Note: See TracChangeset for help on using the changeset viewer.