英文:
How to implement MVVM with Pages
问题
我试图在C#中使用MVVM模式与页面。我正在尝试像这样设置DataContext:
public partial class PageView : Page
{
public PageView()
{
BindingContext = new PageViewModel();
//等等
}
}
但BindingContext不存在。
在页面中正确的方法是什么?
英文:
I trying to using the MVVM pattern in c# with Pages. I am trying to set the DataContext like so
public partial class PageView : Page
{
public PageView()
{
BindingContext = new PageViewModel();
//etc
But BindingContext doesn't exist.
What's the correct way to do this for pages?
答案1
得分: 1
DataContext = new PageViewModel();
英文:
It should be
DataContext = new PageViewModel();
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论