使用 MVVM 返回时如何刷新 ViewModel
使用手机上的后退按钮返回时如何刷新 ViewModel?
我正在使用手机上的后退按钮,但我相信它与调用 NavigationService.GoBack() 相同,它导航到堆栈上的上一页,但在我的 View 或 ViewModel 中不会调用构造函数。
When navigating back using the back button on the phone how can I refresh my ViewModel?
I'm using the back button on the phone but I believe its the same as calling NavigationService.GoBack(), which navigates to the previous page on the stack but the constructor is not called in my View or ViewModel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在基本 Page 类中挂钩 OnNavigatingTo 事件并调用 ViewModel 上的方法。我没有 VS,但伪代码是:
在 MyBasePAge : Page 中,
您可以在离开页面之前执行相同的操作:
You can hook in a base Page class the OnNavigatingTo event and call a method on your ViewModel. I don't have a VS with me but a pseudo-code would be:
in MyBasePAge : Page
you can do the same before leaving the page: