Ejemplo n.º 1
0
 public override void CheckForScrollInputEnable()
 {
     if (thisIsTopmostScrollerInMotion)
     {
         if (!this.IsMovingWithSpeedOverNewScrollThreshold())
         {
             EnableScrollInputSelf();
             thisScrollerElement.CheckForScrollInputEnable();
         }
     }
     else
     {
         if (this.IsMovingWithSpeedOverNewScrollThreshold())
         {
             DisableScrollInputRecursively(this);
         }
         else
         {
             EnableScrollInputRecursively();
         }
     }
 }