I’m trying to develop my first Silverlight navigation application. This application has 2 main pages, “Data”, and “Analysis”. The Data page is where the user can load in a csv file into a custom datatable object :-), whilst the Analysis page is where the user can analyse the datatable.
How do I expose/share the datatable on the Data page so that the Analysis page can access it?
You can also create some class with public static field in it. All these field would be accessible to all pages. So they can be used as globals. Something like that: