Sebastian Gray
Sebastian Gray

Reputation: 2694

How to pass a value between Silverlight pages for WP7?

I've got a MainPage.xaml page a Detail.xaml page.

I've passed variables to the Detail.xaml from MainPage.xaml by using a static variable and referencing it in Detail.xaml (the detail page is acting like a dialog). However once I've updated the content of another object, I want to call a method in MainPage.xaml to refresh the content of that page using the updated object from the Detail.xaml page.

I assume I am not using the correct paradigm for this and should probably be using MVVM or something but I'm not familiar with the implementation and was hoping there was a simple way to do this?

Upvotes: 1

Views: 4887

Answers (1)

Mick N
Mick N

Reputation: 14882

Can you load the content from the static into your control in the OnNavigatedTo?

You can make a method in your main page to do that job and call that.

Upvotes: 1

Related Questions