示例#1
0
 public void forceControlEvent(Control ctrl) {
   for (Listener lst : ctrl.getListeners(SWT.Resize)) {
     if (lst instanceof ControlListener) {
       ControlListener clst = (ControlListener) lst;
       clst.controlResized(null);
     }
   }
 }