Ejemplo n.º 1
0
 private void RotateRight(){
     OnRotateCommand?.Invoke(this, new OnRotateEventArgs{
         RotateLeft = false
     });
 }
Ejemplo n.º 2
0
 private void RotateLeft(){
     OnRotateCommand?.Invoke(this, new OnRotateEventArgs{
         RotateLeft = true
     });
 }