Beispiel #1
0
 protected void OnRotateCounterclockwise(RotatableBoard <Status> section)
 {
     if (RotateCounterclockwise != null)
     {
         RotateCounterclockwise(section);
     }
 }
 void RotateCounterclockwise(RotatableBoard <Status> section)
 {
     mutex.WaitOne();
     DispatcherHelper.CheckBeginInvokeOnUI(() =>
     {
         if (CurrentSubStage == SubProcedureEnum.Rotation)
         {
             section.StartRotatingCounterclockwise();
             //Next();
         }
     });
 }
 void HumanRotate(RotatableBoard <Status> sender)
 {
     Next();
 }
 void RotateCounterclockwise(RotatableBoard <Status> section)
 {
     section.StartRotatingCounterclockwise();
     Turn();
 }