如何导航 windows 中的特定数据透视项

how to navigate the particular pivot item in windows

在我的 windows 应用程序中,我使用了 4 个数据透视项,例如现金、更改密码、项目、个人资料。每当我单击任何枢轴项目时,页面仅导航到配置文件枢轴项目。但我只需要转到特定的枢轴项目。请任何人帮助我。

代码:

private void changepassword_Click(object sender, RoutedEventArgs e)
        {
            //Frame.Navigate(typeof(profile), uuid);
            Frame.Navigate(typeof(profile));
        }

以数据透视表索引作为参数进行导航

Frame.Navigate(typeof(profile), 1)

在您的个人资料页面中:

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    MainPivot.SelectedIndex = (int) e.Parameter;
}