I haven't found any useful answer, or should I say "any answer" that how can I pass data objects between the pages in WP7?
PAGE1
IEnumerable<dictParts> Parts = LoadParts();
How can I pass Parts
to PAGE2?
See also How to pass a value between Silverlight pages for WP7?
You have a couple of options:
public static class GlobalVariables
{
public static string my_string = "";
public static int my_int = -1;
}
Then you access the Global Variables class like this: GlobalVariables.variable_name e.g. GlobalVariables.my_string
;
Ref: http://forums.create.msdn.com/forums/p/66396/573232.asp - wafers 2012-04-04 18:54