在窗口电话中,我使用以下代码在页面之间传输数据,
NavigationService.Navigate(new Uri("/Page.xaml?object1=" & obj, UriKind.Relative));
这里我在页面之间传递一个对象,我该如何在页面间传递两个对象?
答案 0 :(得分:13)
这个问题的答案是一个更好的解决方案:Passing data from page to page
代码:
PhoneApplicationService.Current.State["MyObject"] = yourObject;
NavigationService.Navigate(new Uri("/view/Page.xaml", UriKind.Relative));
//In the Page.xaml-page
var obj = PhoneApplicationService.Current.State["MyObject"];
您只需向URL添加参数,如下所示:
NavigationService.Navigate(new Uri("/Page.xaml?object1=" + obj + "&object2=" + obj2, UriKind.Relative));
否则,创建一个包含所有对象的包装器对象(就像在MVVM模式中使用的那样):
public class Container
{
public object Object1 { get; set; }
public object Object2 { get; set; }
}
var container = new Container { Object1 = obj, Object2 = obj2 };
NavigationService.Navigate(new Uri("/Page.xaml?object1=" + container, UriKind.Relative));
答案 1 :(得分:2)
我不确定你的意思是什么。您是指从Object继承的ACTUAL对象,还是指String值或int值等值。
无论:
NavigationService.Navigate(new Uri("/Page.xaml?object1="+obj+"&object2="+obj2, UriKind.Relative));
这对你有用。
答案 2 :(得分:-1)