gpt4 book ai didi

c# - 从 Windows Phone 8.1 通用应用程序的 View 模型导航到新页面

转载 作者:太空狗 更新时间:2023-10-29 18:24:54 27 4
gpt4 key购买 nike

我正在开发一个 Windows Phone 8.1 通用应用程序,我想找到处理页面导航的最佳方式,而无需在代码中添加大量逻辑。我想尽可能保持 View 中的代码整洁。响应按钮点击而导航到新页面的可接受的 MVVM 方式是什么?

我目前必须从 ViewModel 向 View 发送一个 RelayCommand 消息,其中包含要导航到的页面的详细信息。这意味着后面的代码必须按如下方式连接:

    public MainPage()
{
InitializeComponent();
Messenger.Default.Register<OpenArticleMessage>(this, (article) => ReceiveOpenArticleMessage(article));
...
}

private object ReceiveOpenArticleMessage(OpenArticleMessage article)
{
Frame.Navigate(typeof(ArticleView));
}

虽然它确实有效,但这似乎不是最好的方法。如何直接从 ViewModel 进行页面导航?我在我的项目中使用 MVVM-Light。

最佳答案

好的,我找到了这个问题的答案。进行了一些调查,但我最终找到了首选的 MVVM-Light 方法。无论如何,我不认为这个答案是我的功劳,只是将它张贴在这里,以防人们正在寻找这个问题的答案。

创建一个INavigationService接口(interface)如下:

public interface INavigationService
{
void Navigate(Type sourcePageType);
void Navigate(Type sourcePageType, object parameter);
void GoBack();
}

创建一个 NavigationService 类如下:

public class NavigationService : INavigationService
{
public void Navigate(Type sourcePageType)
{
((Frame)Window.Current.Content).Navigate(sourcePageType);
}

public void Navigate(Type sourcePageType, object parameter)
{
((Frame)Window.Current.Content).Navigate(sourcePageType, parameter);
}

public void GoBack()
{
((Frame)Window.Current.Content).GoBack();
}
}

现在在 ViewModelLocator 中,像这样设置它:

    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance",
"CA1822:MarkMembersAsStatic",
Justification = "This non-static member is needed for data binding purposes.")]
public MainViewModel Main
{
get
{
return ServiceLocator.Current.GetInstance<MainViewModel>();
}
}

static ViewModelLocator()
{
ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);

if (ViewModelBase.IsInDesignModeStatic)
{
SimpleIoc.Default.Register<INavigationService, Design.DesignNavigationService>();
}
else
{
SimpleIoc.Default.Register<INavigationService>(() => new NavigationService());
}

SimpleIoc.Default.Register<MainViewModel>();
}

接下来为设计时设置一个导航服务,如下所示:

public class DesignNavigationService : INavigationService
{
// This class doesn't perform navigation, in order
// to avoid issues in the designer at design time.

public void Navigate(Type sourcePageType)
{
}

public void Navigate(Type sourcePageType, object parameter)
{
}

public void GoBack()
{
}
}

我的 MainViewModel 构造函数如下:

   public MainViewModel(INavigationService navigationService)
{
_navigationService = navigationService;

...

现在您可以简单地使用它在您的 View 模型中导航:

_navigationService.Navigate(typeof(WelcomeView));

有关原作者 Laurent Bugnion 的更多详细信息,请参阅本文和相关代码。 http://msdn.microsoft.com/en-us/magazine/jj651572.aspx

关于c# - 从 Windows Phone 8.1 通用应用程序的 View 模型导航到新页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26380175/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com