How to pass a value between Silverlight pages for WP7?
Posted
by
Sebastian Gray
on Stack Overflow
See other posts from Stack Overflow
or by Sebastian Gray
Published on 2011-01-09T03:32:24Z
Indexed on
2011/01/14
10:53 UTC
Read the original article
Hit count: 207
silverlight-4.0
|windows-phone-7
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?
© Stack Overflow or respective owner