1

I have some troubles to bind my methods from the ViewModel to the XAML of Windows Phone. This problem occours not at compiling time self but at the execution in this line of code:

System.Windows
      .Application
      .LoadComponent(this, 
                     new System.Uri("/MvvmCross.Phone;component/Views/MenuAuswahlView.xaml"
                                     , System.UriKind.Relative));

and the XAML looks like:

...
xmlns:mvx="clr-namespace:mvx;assembly=Cirrious.MvvmCross.BindingEx.WindowsPhone"
...
<Button mvx:Bi.nd="Command SelectOrder">
...

Does anybody have an idea?

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
  • 4
    I solved the problem because I haven't seen the additional information that the BindingBuilder was not found. I added these two line in the setup var builder = new MvxWindowsBindingBuilder(); builder.DoRegistration(); And now it works! But don't forget to add the 2 plugins in every project *FieldBinding *MethodBinding – Thomas Loidolt Apr 18 '14 at 11:10

0 Answers0