• wp8 导航方法


    全局跳转

    (App.Current.RootVisual as PhoneApplicationFrame).Navigate(new Uri("/Tools/SpatialQueryChart.xaml", UriKind.Relative));

    局部跳转

    NavigationService.Navigate(new Uri("/DetailsPage.xaml",Urikind.Relative));

    全局跳转2

    public void GoBack(int iNumber)

            {

                PhoneApplicationFrame root = (PhoneApplicationFrame)(Application.Current.RootVisual);

                //iNumber表要回退的数量

                if (iNumber >= 0)

                {

                    //导航中的条目数

                    int iDepth = root.BackStack.Count();

                    if (iNumber < iDepth)

                    {

                        for (int i = 0; i < iNumber-1; i++)

                        {

                            root.RemoveBackEntry();

                        }

                    }

                    else

                    {

                        for (int i = 0; i < iDepth-1; i++)

                        {

                            root.RemoveBackEntry();

                        }

                    }

                    if (root.CanGoBack)

                    {

                        root.GoBack();

                    }

                }

            }

  • 相关阅读:
    函数匹配
    特殊用途语言特性——默认参数、内联函数和constexptr函数
    函数重载
    返回数组指针的4种函数写法
    返回数组引用的4种函数写法
    返回类型和return语句
    exception is the version of xbean.jar correct
    window.location
    plsql 导出查询结果
    plsql 如何导入excel数据?
  • 原文地址:https://www.cnblogs.com/luquanmingren/p/3246161.html
Copyright © 2020-2023  润新知