使用 MVVM 返回时如何刷新 ViewModel

发布于 2024-10-16 09:26:00 字数 141 浏览 5 评论 0原文

使用手机上的后退按钮返回时如何刷新 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

杀お生予夺 2024-10-23 09:26:00

您可以在基本 Page 类中挂钩 OnNavigatingTo 事件并调用 ViewModel 上的方法。我没有 VS,但伪代码是:

在 MyBasePAge : Page 中,

public void OnNavigatingTo(object sender, eventargs e)
{
   var vm = this.DataContext as BaseViewModel;
   if(vm != null)
   {
      vm.Initialize();
   }
 }

您可以在离开页面之前执行相同的操作:

public void OnNavigatingFrom(object sender, eventargs e)
{
   var vm = this.DataContext as BaseViewModel;
   if(vm != null)
   {
      vm.Save();
   }
 }

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

public void OnNavigatingTo(object sender, eventargs e)
{
   var vm = this.DataContext as BaseViewModel;
   if(vm != null)
   {
      vm.Initialize();
   }
 }

you can do the same before leaving the page:

public void OnNavigatingFrom(object sender, eventargs e)
{
   var vm = this.DataContext as BaseViewModel;
   if(vm != null)
   {
      vm.Save();
   }
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文