Exemplo n.º 1
0
 private void onRepeatedlyExecute(IRepeatedlyExecuteEventArgs obj)
 {
     foreach (var handle in _resizeHandles)
     {
         handle.Visit();
     }
     foreach (var handle in _rotateHandles)
     {
         handle.Visit();
     }
     _pivotHandle.Visit();
 }
Exemplo n.º 2
0
 private void onRepeatedlyExecute()
 {
     foreach (var handle in _resizeHandles) handle.Visit();
     foreach (var handle in _rotateHandles) handle.Visit();
     _pivotHandle.Visit();
 }