I have created Android app which is working as expected. Now I added UWP Project as shown in MvvmCross site.
The problem is that binding is not working there.
There is my XAML:
<Grid Row="1" >
<StackPanel VerticalAlignment="Center"
Margin="40 0 40 0">
<TextBox Text="{Binding Login}"
Margin="0 0 0 20"/>
<PasswordBox Password="{Binding Password}"/>
</StackPanel>
<Button VerticalAlignment="Bottom"
Content="Login"
Command="{Binding LoginCommand}"
Foreground="#F9F9F9"
HorizontalAlignment="Stretch"
Background="#FF4081"/>
</Grid>
And ViewModel
public string Login { get; set; }
public string Password { get; set; }
public MvxCommand LoginCommand { get; private set; }
//...
When Login button is pressed it succesfully goes into given method but Login and Password string are null. The same code is working for Android with MvxBind on Login and Password strings.
Do I do something worng ?