How to pass a value between Silverlight pages for WP7?

删除回忆录丶 提交于 2019-11-28 10:29:04

问题


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?


回答1:


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.



来源:https://stackoverflow.com/questions/4637533/how-to-pass-a-value-between-silverlight-pages-for-wp7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!