所以我使用mvvm light 5和Xamarin Android项目。我一直在关注本教程:
http://blog.galasoft.ch/posts/2014/05/mvvm-light-v4-4-with-xamarin-android-support/
然而,当我到达需要添加绑定和命令的步骤时,我得到AddBinding和AddCommand的符号未找到错误。
具体来说,我在谈论以下代码:
this.AddBinding(
() => Vm.Hello,
() => MyButton.Text);
MyButton.AddCommand(
"Click",
Vm.IncrementCommand);
此外,该教程似乎还没有提到如何为绑定设置axml布局。
我期待像
这样的东西 <Label text={Binding textFromDataContext} />
感谢任何帮助。
感谢。
答案 0 :(得分:0)
我通过在Droid项目中手动安装nuget包CommonServiceLocator解决了FileNotFoundException