从页面导航传递参数并将它们绑定到WP7中的webbrowser

时间:2013-07-04 14:07:27

标签: windows-phone-7 navigation webbrowser-control

我有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>

1 个答案:

答案 0 :(得分: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&amp; msg在构造函数之外定义(在ur类中)。