本文介绍了Prism VM 与 View 内的页面代码绑定的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用 Xamarin Forms &PCL
Using Xamarin Forms & PCL
在Page.Xaml中看到了很多关于将VM与View绑定的例子和片段
I saw a lot of examples and snippets About binding VM with View in the Page.Xaml
使用这个块
xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms"
prism:ViewModelLocator.AutowireViewModel="True"
如果我想在后面的页面代码(Page.cs)中绑定视图模型怎么办.
And what if I want to bind the view model within the page code behind (Page.cs).
推荐答案
您可以通过对绑定上下文进行类型转换来从代码背后访问 ViewMode
You can get access to ViewMode from code behind is simply by typecasting your binding context
var pageViewModel = (PageViewModel)this.BindingContext;
它对我有用.
这篇关于Prism VM 与 View 内的页面代码绑定的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!