我正在为 sharepoint 2010 开发 silverlight 应用程序。我想将列表从一个页面传递到另一个页面。我正在使用 Silverlight 导航。我知道如何在页面之间传递值。
myFrame.Navigate(new Uri("/foo.xaml?customerId=1234", UriKind.Relative));
string customerId = this.NavigationContext.QueryString["customerid"];
但是如果我想传入List<string> customers
查询字符串怎么办。我可以通过吗?如果是,那么你能告诉我该怎么做吗?如果还有其他更好的方法在页面之间传递列表,请告诉我。