Esempio n. 1
0
    string GetTopMostScrollerInMotionString()
    {
        string    result           = "TopMost: \n";
        IScroller handlingScroller = thisUIM.GetInputHandlingScroller();

        if (handlingScroller == null)
        {
            result += "no handling scroller";
        }
        else
        {
            IScroller topMost = handlingScroller.GetTopmostScrollerInMotion();
            if (topMost == null)
            {
                result += "null";
            }
            else
            {
                result += topMost.GetUIAdaptor().GetName();
            }
        }
        return(result);
    }