示例#1
0
    /// <summary>
    /// 导航返回
    /// </summary>
    public bool ReturnWindow()
    {
        if (curShownWindow != null)
        {
            bool needReturn = curShownWindow.ExecuteReturnLogic();
            if (needReturn)
            {
                return(false);
            }
        }

        return(RealReturnWindow());
    }