Update:
The answer of this question is a better solution: Passing data from page to page
You can just add parameters to the URL, like this:
NavigationService.Navigate(new Uri("/Page.xaml?object1=" + obj + "&object2=" + obj2, UriKind.Relative));
Otherwise, create a wrapper object that holds all of your object (like used in the MVVM pattern):
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));