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