MVVM适合WP7应用程序开发吗?

发布于 2024-12-11 23:31:57 字数 205 浏览 0 评论 0原文

我正在使用 Windows Phone 7 开发一个应用程序。 我之前曾使用 MVVM 进行 WPF 应用程序开发,但想知道 MVVM 是否也适合 WP7 应用程序开发。 如果没有,您可以建议一些架构\框架以供在 WP7 中参考使用。

如果我使用 MVVM,我们如何从一个页面导航到另一个页面并将页面的 DataContext 设置为 ViewModel?

谢谢。

I am developing an app using Windows Phone 7.
I have used MVVM for WPF app development before but was wondering if MVVM is suitable for WP7 app development too.
If not can you please suggest some architectures\frameworks to refer to use in WP7.

If I use MVVM, how do we navigate from one page to another and set DataContext of the page to a ViewModel?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

伪心 2024-12-18 23:31:57

绝对地!

网上有大量关于 Windows Phone 开发中 MVVM 使用的资源。只需搜索即可。

目前使用的两个著名的 MVVM 框架是:

玩得开心!

Absolutely!

There are tons of resources online that talk about MVVM use in Windows Phone Dev .. simply search.

Two prominent MVVM frameworks in use are:

Have fun!

只有影子陪我不离不弃 2024-12-18 23:31:57

数据上下文可以在 .xaml 页面的构造函数中设置:

PageViewModel viewModel = new PageViewModel();
this.DataContext = viewModel;

此外,据我所知,可以在视图中完成与界面相关的操作,因此对于导航,您可以简单地订阅视图中的某些事件,然后:

PhoneApplicationFrame frame = (PhoneApplicationFrame)Application.Current.RootVisual;
frame.Navigate(new Uri("/Views/NewPage.xaml", UriKind.Relative));

Data context can be set in the constructor of the .xaml page:

PageViewModel viewModel = new PageViewModel();
this.DataContext = viewModel;

Also, from what I know, interface related actions can be done in the view so for navigation you could simply subscribe to some event in the view and then:

PhoneApplicationFrame frame = (PhoneApplicationFrame)Application.Current.RootVisual;
frame.Navigate(new Uri("/Views/NewPage.xaml", UriKind.Relative));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文