1.如何从一个页面把参数传人另外一个页面中
在第一个页面中建一个button, 一个textbox。
在第一个页面中:
private void button1_Click(object sender, RoutedEventArgs e)
{
this.NavigationService.Navigate(new Uri("/page2.xaml?str=" + textBox1.Text, UriKind.Relative));
}
在第二个页面中建一个textBlock
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
base.OnNavigatedTo(e);
string pv = this.NavigationContext.QueryString["str"];
this.textBlock1.Text = pv;
}