I need to pass a simple string between two pages in Windows Phone 8. I\'ve been searching around, trying to find the best way of doing it - but the ones i tried turned out t
Take a look at Caliburn.micro. It is really simple to set up and lets you pass parameters through views in a strongly typed manner, like this:
public void GotoPageTwo() {
navigationService.UriFor()
.WithParam(x => x.NumberOfTabs, 5)
.Navigate();
}
http://caliburnmicro.codeplex.com/wikipage?title=Working%20with%20Windows%20Phone%207%20v1.1&referringTitle=Documentation