1

我有 2 页。Page1 想要导航到第 2 页,使用:

 private void listbox1_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            int index = listbox1.SelectedIndex;
            String pom = "";
            RssDataSet ob = lista.ElementAt(index);
            pom = pom + ob.description;
            NavigationService.Navigate(new Uri("/novaStrana.xaml?id="+pom, UriKind.Relative));
        }

它基本上是从listbox1 中获取索引,从ob 获取一些关于它的信息并导航到Page2。

现在的问题是:我无法在 Page2 上获取我的“pom”参数。基本上我的 OnNavigatedTo 方法没有触发。Page2 页面如下所示:

public novaStrana()
        {

            InitializeComponent();            
        }

        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
        {
            String stuff = "";
            base.OnNavigatedTo(e);

            string msg = "";

             if (NavigationContext.QueryString.TryGetValue("msg", out msg))
            {

                stuff = msg;
            }
        }

为什么根本不开火?我知道这一点是因为我尝试了很多次调试。

我运行模拟器,单击我的列表项,调试器显示 Page2 正在初始化,这意味着构造函数正在运行,但是一旦构造函数完成,就是这样。Page2 甚至没有到达 OnNavigatedTo。

谢谢你的帮助。

编辑:第2页:

namespace ZaParsiranje
{
    public partial class novaStrana : PhoneApplicationPage
    {

        public novaStrana()
        {

             InitializeComponent();            
        }

        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
        {
            String stuff = "";
            base.OnNavigatedTo(e);

            string msg = "";

            if (NavigationContext.QueryString.TryGetValue("id", out msg))
            {

                stuff = msg;
            }
        }


    }
}

和 Page2 的 xalm:

    <phone:PhoneApplicationPage 
    x:Class="ZaParsiranje.novaStrana"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"  
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
    shell:SystemTray.IsVisible="True" Loaded="PhoneApplicationPage_Loaded">

    <!--LayoutRoot is the root grid where all page content is placed-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <!--TitlePanel contains the name of the application and page title-->
        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
            <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
            <TextBlock x:Name="PageTitle" Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
        </StackPanel>

        <!--ContentPanel - place additional content here-->
        <Grid x:Name="ContentPanel" Grid.Row="1">
            <phone:WebBrowser Name="WebBroser1" />
        </Grid>
    </Grid>

    <!--Sample code showing usage of ApplicationBar-->
    <!--<phone:PhoneApplicationPage.ApplicationBar>
        <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
            <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/>
            <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/>
            <shell:ApplicationBar.MenuItems>
                <shell:ApplicationBarMenuItem Text="MenuItem 1"/>
                <shell:ApplicationBarMenuItem Text="MenuItem 2"/>
            </shell:ApplicationBar.MenuItems>
        </shell:ApplicationBar>
    </phone:PhoneApplicationPage.ApplicationBar>-->

</phone:PhoneApplicationPage>
4

1 回答 1

1

我无法在 Page2 上获得我的“pom”参数

您试图在使用键"msg"存储它时获取 QueryString 的值。"id"你怎么能期望得到正确的结果?

只需更正您的代码:

if (NavigationContext.QueryString.TryGetValue("id", out msg))
{
    stuff = msg;
}

编辑

或获得方法queryString

在你的构造函数中得到它

public novaStrana()
        {
            InitializeComponent();            

            Loaded += (o, e) =>
            {
                  if (NavigationContext.QueryString.TryGetValue("id", out msg))
                  {
                        stuff = msg;
                  }
            }

        }

其中stuff&msg在构造函数之外定义(在你的类中)。

于 2013-07-04T14:18:40.927 回答