ログインする必要があります。Login を ViewModel にバインドしています。passwordBox からパスワードをバインドできないため、EventToCommand パラメータを介して渡します
<i:Interaction.Triggers>
<i:EventTrigger EventName="Tap">
<cmd:EventToCommand Command="{Binding LogInCommand,
Mode=OneWay}"
CommandParameter="{Binding Password,
ElementName=PasswordBox,
Mode=OneWay}"
/>
</i:EventTrigger>
</i:Interaction.Triggers>
私の問題 - loginbox にフォーカスがある場合、ViewModel のログインは null です。ボタンがタップされたときに強制的にフォーカスを失う方法。