如何使用Prism导航到所需的PivotItem? UWP App

时间:2015-12-02 11:58:38

标签: c# xaml prism uwp

我有一个菜单,当我点击菜单项时,我想导航到特定数据透视表的页面。 我认为必须有这样的东西

_navigationService.Navigate(path**item=2**, ObjectContainer);

1 个答案:

答案 0 :(得分:-1)

我写了一个演示来解决你的问题。我看到你可能在你的项目中使用了navigationService,我没有使用它,我没有在这里使用任何菜单,只是一个非常简单的演示,好吗?

是的,您通过参数传递使用导航是正确的,因此在Pivot页面中如何接收此参数并处理此参数会成为问题。

为此,您需要覆盖OnNavigatedTo()页面中的Pivot方法:

MainPage.xaml中:

<StackPanel>
    <Button Content="PivotItem 1" Click="Button_Click1" VerticalAlignment="Top" Margin="30"/>
    <Button Content="PivotItem 2" Click="Button_Click2" VerticalAlignment="Center" Margin="30"/>
    <Button Content="PivotItem 3" Click="Button_Click3" VerticalAlignment="Bottom" Margin="30"/>
</StackPanel>

PivotPage.xaml:

<Pivot Title="Test" FontSize="60" x:Name="pivotcontrol">
    <PivotItem Header="Item1">
        <StackPanel Orientation="Vertical">
            <TextBlock Text="PivotItem1" FontSize="30" Margin="60"/>
        </StackPanel>
    </PivotItem>
    <PivotItem Header="Item2">
        <StackPanel Orientation="Vertical">
            <TextBlock Text="PivotItem2" FontSize="30" Margin="60"/>
        </StackPanel>
    </PivotItem>
    <PivotItem Header="Item3">
        <StackPanel Orientation="Vertical">
            <TextBlock Text="PivotItem3" FontSize="30" Margin="60"/>
        </StackPanel>
    </PivotItem>
</Pivot>
<Button Content="Back to MainPage" Margin="60" Click="item_back"/>

MainPage.xaml.cs中:

        public MainPage()
        {
            this.InitializeComponent();
        }

        private void Button_Click1(object sender, RoutedEventArgs e)
        {
            this.Frame.Navigate(typeof(PivotPage), "Item1");
        }

        private void Button_Click2(object sender, RoutedEventArgs e)
        {
            this.Frame.Navigate(typeof(PivotPage), "Item2");
        }

        private void Button_Click3(object sender, RoutedEventArgs e)
        {
            this.Frame.Navigate(typeof(PivotPage), "Item3");
        }

PivotPage.xaml.cs:

string selectitem = null;

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    if (e.Parameter != null)
    {
        string getdata = e.Parameter.ToString();
        selectitem = getdata;
    }

    if (selectitem.Equals("Item1"))
    {
        pivotcontrol.SelectedIndex = 0;
    }
    else if (selectitem.Equals("Item2"))
    {
        pivotcontrol.SelectedIndex = 1;
    }
    else
    {
        pivotcontrol.SelectedIndex = 2;
    }
}

public PivotPage()
{  
    this.InitializeComponent();
}

private void item_back(object sender, RoutedEventArgs e)
{
    this.Frame.Navigate(typeof(MainPage));
}