So I am using mvvm light 5 with a Xamarin Android project. I have been following this tutorial:
http://blog.galasoft.ch/posts/2014/05/mvvm-light-v4-4-with-xamarin-android-support/
However when I get to the step where I need to add the bindings and commands, I get symbol not found errors for AddBinding and AddCommand.
Specifically I am talking about the following code:
this.AddBinding(
() => Vm.Hello,
() => MyButton.Text);
MyButton.AddCommand(
"Click",
Vm.IncrementCommand);
Additionally the tutorial doesn't seem to mention how to setup the axml layout for the bindings.
I was expecting something like
<Label text={Binding textFromDataContext} />
Any help is appreciated.
Thanks.