如何使用Prism导航到所需的数据透视项?UWP应用程序
本文关键字:透视 数据 应用程序 UWP Prism 何使用 导航 | 更新日期: 2023-09-27 18:25:23
我有一个菜单,当我单击菜单项时,我想导航到特定数据透视项的页面。我想肯定有类似的东西
_navigationService.Navigate(path**item=2**, ObjectContainer);
我写了一个演示来解决您的问题。我看到你可能在你的项目中使用导航服务,我没有使用它,我也没有在这里使用任何菜单,只是一个非常简单的演示,好吗?
是的,您使用带有参数传递的导航是正确的,因此如何在Pivot
页面中接收此参数并处理此参数将成为问题。
为此,您需要覆盖Pivot
页面中的OnNavigatedTo()
方法:
主页.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>
数据透视页.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"/>
主页.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");
}
数据透视页.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));
}