MVVM适合WP7应用程序开发吗?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
绝对地!
网上有大量关于 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!
数据上下文可以在 .xaml 页面的构造函数中设置:
此外,据我所知,可以在视图中完成与界面相关的操作,因此对于导航,您可以简单地订阅视图中的某些事件,然后:
Data context can be set in the constructor of the .xaml page:
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: