Programming/Eclipse RCP

Dialog Popup시 ESC 눌러도 닫히지 않게...

Lawmin 2012. 1. 11. 18:17
shell.addListener(SWT.Traverse, new Listener() {
public void handleEvent(Event e) {
if (e.detail == SWT.TRAVERSE_ESCAPE) {
e.doit = false;  
}
}
});
shell.open();